我遇到了JW Player的问题,它在IE9正常模式下无效。 当我尝试在IE9正常模式下播放视频时,它会显示如下错误信息;
加载媒体时出错:无法播放文件
但它在IE9兼容模式和其他浏览器中完美运行。
我的脚本是这样的;
<div id="myElement">Loading the player...</div>
<script src="/jwplayer/jwplayer.js"></script>
<script>jwplayer.key="key="</script>
<script type="text/javascript">
jwplayer("myElement").setup({
width: '520',
height: '293',
playlist: [{
image: "/video/image.png",
sources: [{
file: "/video/video-640x360.m4v",
label: "360p",
width: '640',
height: '360'
},{
file: "/video/video-1280x720.m4v",
label: "720p",
width: '1280',
height: '720'
}]
}],
modes: [
{type: 'flash'},
{type: 'html5'},
{type: 'download'}
]
});
</script>
这是flash播放器的问题吗?有什么建议吗?
请帮助我,谢谢和问候,
阿伦