Click here to Skip to main content
15,888,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I got a intranet site, which I can not alter and trying to read a stream from a remote url like this:
intranet.HHTeam.com/teamVideo_1.mp4

I need to be able (to allow users) to download/save the video to their local machines for offline viewing. Anybody knows what could be the best approach here?

Thanks!
Posted

1 solution

MP4 is supported in Firefox and Chrome via the video element. So you don't have to use any fancy video players to play back the video, but you can allways use something like the JWPlayer

http://www.jwplayer.com/[^]

To include download as an option just put a link to the site, that points directly to the video file. The browser will handle the download.
 
Share this answer
 
Comments
MK-Gii 4-May-15 9:54am    
Tried including the link - the browser just plays it ;] Are you referring to some particular browser?
webmaster442 4-May-15 11:01am    
Like this:
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
More info: http://www.w3schools.com/html/html5_video.asp

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900