Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to stream videos through HTML5. Is that possible, are there any free sources to try that into my own application? Thanks!

share|improve this question

3 Answers

up vote 1 down vote accepted

If you mean just deliver video like Youtube or any other video site, you just use the <video> element to deliver it. Its pretty much like displaying an image (JPEG). Its just progressively downloaded to the user's browser. More details about Video at Dive into HTML5.

However, if you mean live-stream or streamed to a user such that its not really downloaded, I'm sure there are no way so far to do that without using a solution like a Flash Player client with a streaming server back-end - Flash Media Server, WowzaMedia, Red5, etc, etc.

share|improve this answer
<vide> or <video> – bomslang Apr 8 '11 at 5:35
Sorry, <video> – Brajeshwar Apr 8 '11 at 16:33

You could use a video element.

share|improve this answer
But this is only for playing stored/existing files. What about streaming? – Ahmad Farid Apr 8 '11 at 17:13

Yes, you can stream live video through <video> tag but it is supported to modern browsers only. so, Have a look at HTTP Live Streaming checks if browsers/devices support HLS or fallback correctly to see if live streamming is supported on broswers you are wishing to target

share|improve this answer
1  
How can this be live streaming since I can click further in the video and still takes me there? – Test Test Nov 8 '12 at 16:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.