我正在尝试将JW Player设置为仅在HTML5模式下播放。 显然它不起作用,我只能看到闪回后退。
我的设置:
<div id='videoContainer'>This text will be replaced</div>
<script type='text/javascript'>
jwplayer('videoContainer').setup({
'flashplayer': '/jwplayer/player.swf',
'file': '/videos/clip_01.mp4',
'image': '/images/preview.jpg',
'skin': '/jwplayer/skins/lulu.zip',
'backcolor': 'FFFFFF',
'frontcolor': '000000',
'lightcolor': '000000',
'screencolor': '000000',
'controlbar': 'bottom',
'width': '640',
'height': '480',
'modes': [
{ type: "html5",
config: {
file: "/videos/clip_01.mp4"
}
},
//I commented this line out so it doesn't fallback to flash
//{ type: "flash", src: "/jwplayer/player.swf" },
{ type: "download" }
]
});
</script>
我做错了还是这个功能还没有?
答案 0 :(得分:3)
如果正在使用非MP4支持浏览器,例如 Firefox 或 Opera ,则默认为Flash。
- Ian Devlin 12年1月23日14:11