3

我正在使用VideoJS(一个 jQuery 视频播放器)。当我.flv向播放器添加文件时,VideoJS 元素在 Firefox/Chrome/Opera 中有效,但在 Internet Explorer 中失败。

如何让视频在 Internet Explorer 9 中正常播放?

HTML 代码:

<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264"
      poster="http://video-js.zencoder.com/oceans-clip.png"
      data-setup="{}">
    <source src="http://klaus.geekserver.net/ming-video/test.flv" type='video/mp4' />
</video>

我在这里发布了一个 JSFiddle 示例。

4

2 回答 2

1

我知道我迟到了,但如果您仍在寻找答案,这将对您有所帮助。

在您的源标签中,将类型从 video/mp4 更改为 video/flv,您就可以开始了。

这是代码示例

<source src="http://klaus.geekserver.net/ming-video/test.flv" type='video/flv' />

于 2013-05-01T05:39:32.183 回答
0

我不得不在 ie8 上升级我的 flash 播放器。

另一件事可能是: videojs Flash Fallback Not Working In IE8

于 2013-01-24T11:16:48.323 回答