HTML5 Support Live Streaming Video?if Yes what formats please give details
-
sábado, 14 de abril de 2012 17:19Hi,
HTML5 will support Live streaming video or not? If yes what supports what the format.
can i use like below
<video controls> <source src="http://live-streaming-url/video.ogv" type="video/ogg"> <source src="http://live-streaming-url/video.mp4" type="video/mp4"> video not supported </video>
Is it Corrrect Method i search many sites i am not get answer.please give me the answer
Todas las respuestas
-
sábado, 14 de abril de 2012 21:24
Hi,
Please give details of link to your website page or a mashup...we need to see your full markup/scripting to give a definate answer (you may be using third-party shims or have markup errors).
video support details can be found in the links provided at the top of this forum
http://msdn.microsoft.com/en-us/ie/hh410106#_HTML5_video_audio help yourself...
Element name Supported formats video MP4 container, H.264 video, Baseline, Main, and High profiles—audio in AAC or MP3
WebM video, if you have the VP8 codec installed
audio MP3, and AAC in MP4 container it may be a setting on the Advanced tab of Internet Options, or your IE Security settings....
these are public forums...
Rob^_^
- Editado doctoroftypeMVP domingo, 15 de abril de 2012 14:00
- Propuesto como respuesta doctoroftypeMVP domingo, 15 de abril de 2012 14:01
-
lunes, 16 de abril de 2012 18:00
Hi,
I give below my code sample.
video Form mylocal folder
<video id="videoElement" width="480" height="208" autoplay="autoplay" controls="controls">
<source src="1.ogv" type='video/ogg; codecs="theora, vorbis"'></source>
<source src="1.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'></source>Your browser does not support the element.
</video>
live streaming video
<video id="videoElement" width="480" height="208" autoplay="autoplay" controls="controls">
<source src="http://livestreamingvideourl/video.ogg" type='video/ogg; codecs="theora, vorbis"'></source>
<source src="http://livestreamingvideourl/video.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'></source><source src="http://livestreamingvideourl/video.webM" type='video/webM;'></source>
</video>
i can able toget my local folder videobut i dont know how to specify the live streaming video.my target is IE9,Opera,iPad,Android Tablets.
(1)http://livestreamingvideourl/video .mp4(2)
1.HLS is common for all browser is correct?
2.how to give extention in live streaming video ex( .mp4,ogg,webm extention for all my targets)
Please explain me i am new to live streaming.

