Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML 5 video streaming .ism file?

I have an IIS 7.0 server setup with Media Services 4.0. I created a very simple html 5 page which containts a video with its source pointing to a *.ism file. Is it possible to play the video using the manifest of the ism file in html 5, like in silverlight?

Here's the html code:

<html>
    <body>           
        <video width="640" 
               height="480" 
               src="myvideo.ism/Manifest" 
               autoplay="true" 
               controls="true">vid</video> 
    </body>
</html>

Ryan

like image 884
Ryan Avatar asked Jun 24 '11 15:06

Ryan


1 Answers

sorry, but that's not possible.

there few supported formats: webm, ogv and mp4 but not all browsers support all of them.

like image 119
fazo Avatar answered Oct 05 '22 11:10

fazo