我正在尝试让视频在所有浏览器中播放,但是虽然它在 chrome 中运行良好,但在 Firefox 中出现错误,并且在 IE 10 中视频框加载但不运行
这是代码:
<video id="myVideo" width="100%" controls="controls">
<source src="..\resources\Tutorial\video.ogg" type='video/ogg; codecs="theora, vorbis"' />
<source src="..\resources\Tutorial\video.mp4" type='video/mp4;'/>
</video>
如何让我的视频在所有浏览器中播放?
多谢你们 :)
试过:
<video id="myVideo" width="100%" controls="controls">
<source src="..\resources\Tutorial\video.webm" type='video/webm; codecs="vp8, vorbis"' />
<source src="..\resources\Tutorial\video.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
<source src="..\resources\Tutorial\video.ogv" type='video/ogg; codecs="theora, vorbis"' />
Video tag not supported. Download the video <a href="..\resources\Tutorial\video.webm">here</a>.
</video>
但也没有运气,和上面一样