使用流动播放器在 Opera浏览器上显示视频时,如果视频与使用此代码的页面位于同一文件夹中,则视频播放正常。
<video controls width="704" height="400">
<source src="beach.mp4" type="video/mp4">
<source src="beach.webm" type="video/webm">
<object id="flowplayer" width="704" height="400"
data="FlashPlayer/flowplayer-3.2.16.swf"
type="application/x-shockwave-flash">
<param name="movie" value="FlashPlayer/flowplayer-3.2.16.swf" />
<param name="flashvars" value='config={"clip":"beach.mp4"}' />
</object>
</video>
但是,当我将它们移动到名为Videos的子文件夹时,使用以下代码:
<video controls width="704" height="400">
<source src="beach.mp4" type="video/mp4">
<source src="beach.webm" type="video/webm">
<object id="flowplayer" width="704" height="400"
data="FlashPlayer/flowplayer-3.2.16.swf"
type="application/x-shockwave-flash">
<param name="movie" value="FlashPlayer/flowplayer-3.2.16.swf" />
<param name="flashvars" value='config={"clip":"Videos/beach.mp4"}' />
</object>
</video>
根本没有玩过任何东西。那么请你告诉我如何将视频路径传递给流媒体播放器。
谢谢。
答案 0 :(得分:1)
我认为它应该在src中改变
<video controls width="704" height="400">
<source src="Videos/beach.mp4" type="video/mp4">
<source src="Videos/beach.webm" type="video/webm">
<object id="flowplayer" width="704" height="400"
data="FlashPlayer/flowplayer-3.2.16.swf"
type="application/x-shockwave-flash">
<param name="movie" value="FlashPlayer/flowplayer-3.2.16.swf" />
<param name="flashvars" value='config={"clip":"Videos/beach.mp4"}' />
</object>
</video>