HTML 5 video streaming .ism file?

ε祈祈猫儿з 提交于 2019-12-06 00:50:09

问题


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


回答1:


sorry, but that's not possible.

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



来源:https://stackoverflow.com/questions/6470001/html-5-video-streaming-ism-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!