【发布时间】:2015-04-02 23:19:09
【问题描述】:
当我尝试在我的网页上播放/测试视频 (MP4) 时,我选择播放按钮,每次都会看到:
视频无法解码
在 IE11 中播放约 7 秒后显示,但在 Chrome 和 Firefox 中播放正常。有什么想法吗?
环境:
- video-js player-v4.11.4,带有 flowplayer 后备功能
- IE11
- Windows 7 电脑
这是播放器代码:
<video id="_1200k.mp4" class="video-js vjs-default-skin"
preload="none" width="445" height="340" controls
poster="[var.thumb_file]" data-setup='{techOrder: [‘flash’,’html5’}'>
<source src="http://..........s3.amazonaws.com/[var.video_play]" type='video/mp4' />
<object class="vjs-flash-fallback" width="445" height="340" type="application/x-shockwave-flash" data="https://releases.flowplayer.org/swf/flowplayer-3.2.1.swf">
<param name="movie" value="/flowplayer/flowplayer-3.2.16.swf" />
<param name="allowfullscreen" value="true" />
<param name="flashvars" value='config={"playlist":["/[var.thumb_file]", {"url": "http://.........s3.amazonaws.com/ [var.video_play]","autoPlay":false,"autoBuffering":true}]}' />
<!-- Image Fallback. Typically the same as the poster image. -->
<img src="[var.thumb_file]" width="640" height="264" alt="Poster Image" title="No video playback capabilities." />
</object>
</video>
【问题讨论】:
标签: internet-explorer-11 mp4 video.js flowplayer