不同之处在于我试图让它在portable-Firefox
上运行这是相关的js / html代码:
<table id="videoBox" border="0" width="541px" height="350px" cellspacing="10" cellpadding="0" >
<tr>
<td width="521px" valign="middle" align="center">
<div id="video" style="width:521px; height:324px;"></div>
<script language="JavaScript">
var bgImg = 'url(../theme/img/video-overlay-en.jpg)';
flowplayer('video', '../theme/flowplayer-3.1.4.swf', {
onLoad: function() {
this.setVolume(100); // set volume to 100%
},
onBeforeFullscreen: function() { return false; },
buffering: false,
debug: false,
canvas: {
backgroundColor: "transparent",
backgroundGradient: 'none'
},
plugins: {
content: {
url: '../theme/flowplayer.content-3.1.0.swf',
backgroundImage: bgImg,
height: 95,
width: 521,
padding: 0,
bottom: 0,
opacity: 1.0
},
controls: null
},
clip: {
url: '../media/44/01.flv',
autoPlay: true,
autoBuffering: true,
},
play: {
opacity: 0,
label: null,
replayLabel: null
}
});
</script>
</td>
</tr>
</table>
问题是,即使开始时似乎有“缓冲符号”,视频也不会播放。我显然已经尝试了适用于上述链接的解决方案(即修改div标签中的代码),但这对我不起作用。任何帮助将不胜感激。
P.S。这是流媒体的老版本,你可以看到,但这不应该有任何区别imho
答案 0 :(得分:0)
这对我有用:
当您尝试从本地硬盘驱动器查看Flash视频(在我的情况下为.flv)时,流程图需要一些安全设置,这基本上是允许包含Flash内容的目录中的内容。这是解释细节的链接:
向下滚动到页面底部,然后点击提供的链接以编辑您的Flash播放器安全设置。