H.264 live streaming using HTML5 in Internet Explorer 9

I am trying to find a way to broadcast live video in Internet explorer 9. The videos will be encoded in h.264 (I have to use this encoding) and the user will only use Internet explorer 9. I did some research and every post I found is pretty old. At that time there was not much information, and I could not find a satisfactory answer. Also, I thought that maybe browser support has evolved since then.

My source of video at the moment is RTSP, but I can change anything if I need it too (http or something, I know little about it).

Does anyone know if there is anyway to do what I want to do in IE 9 (using HTML5, we already have flash / silverlight / solution). Preferably, the plugin does not play in real time.

Many thanks!

+6
source share
1 answer

The <video> supports RTSP streams: you can use:

 <video src="rtp://domain.com/stream"> Your browser does not support RTP streams. </video> 

That would be a good starting point, I have not tested this in IE9, but I know that it works fine in Chrome / FF.

0
source

Source: https://habr.com/ru/post/918589/


All Articles