我正在尝试使用 video.js 播放 mp4 文件。它不会在 IE9 中播放。它在 Firefox 和 Chrome 中运行良好。如果我在 windows 媒体播放器中打开视频,它也可以正常播放(也许 IE9 和 windows 媒体播放器使用相同的编解码器?)。我现在已经确认 IE9 甚至没有请求该文件。
请参阅此处的示例:http: //devonline.northcarolina.edu/lcl/ded_prod/exams/video/jstest.html
<html>
<link href="video-js/video-js.css" rel="stylesheet">
<script src="video-js/video.js"></script>
<script>
videojs.options.flash.swf = "video-js/video-js.swf"
</script>
<body>
Video should be here:
<video id="example_video_1" class="video-js vjs-default-skin"
controls preload="auto" width="640" height="264" >
<source src="http://devonline.northcarolina.edu/lcl/ded_prod/exams/video/student/invite.mp4" type='video/mp4' />
</video>
</body>
</html>