要播放 MP4 视频,我使用以下脚本:
$("#jplayer").jPlayer("setMedia", {
m4v: "./videos/test.mp4"
}).jPlayer("play", 0);
播放器使用以下代码初始化:
$("#jplayer").jPlayer({
swfPath: "./jplayer/",
supplied: "m4v",
solutions: "flash, html",
size: {
width: "640px",
height: "460px"
},
nativeVideoControls: {
all: /./
},
});
如果我在 Chrome/IE 中打开视频-一切正常。但是在 Opera/Firefox 中 flash 正在加载(flash 嵌入代码出现在页面上),但视频没有并且没有播放。这是在 Opera/Firefox 的 jplayer div 中加载的代码
<div id="jplayer" class="jp-jplayer" style="width: 640px; height: 460px; display: block;">
<img id="jp_poster_1" style="width: 640px; height: 460px; display: none;">
<object id="jp_flash_1" width="1" height="1" data="./jplayer/Jplayer.swf" type="application/x-shockwave-flash" style="width: 0px; height: 0px;">
<param name="flashvars" value="jQuery=jQuery&id=jplayer&vol=0.8&muted=false">
<param name="allowscriptaccess" value="always">
<param name="bgcolor" value="#000000">
<param name="wmode" value="opaque">
</object>
</div>
你能建议尝试什么吗?如果 Flash 播放器的路径正确,则无法弄清楚是什么导致了此类问题。