【发布时间】:2012-09-13 16:25:45
【问题描述】:
我正在使用 flowplayer 在我的网站上播放视频,并且我配置了一个包含 4 个视频的播放列表,类似于:Flowplayer Playlist
但我看到的是,视频在视频上描绘了一个播放按钮,点击它,我可以播放视频。
相反,我希望将第一个视频的第一帧作为视频的启动画面。
我尝试了这些设置,但它们不起作用:
$(function() {
// setup player without "internal" playlists
$f("player2", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
clip: {baseUrl: '', autoPlay: false, autoBuffering: true, start: 62}
// use playlist plugin. again loop is true
}).playlist("div.petrol", {loop:false});
});
并且视频播放列表配置为:
<div class="clips petrol" style="float:left">
<!-- single playlist entry -->
<a href="a.flv" class="first">
Palm trees and the Sun
<span>HTTP streaming</span>
<em>0:20 min</em>
</a>
<a href="b.flv">
Happy feet inside a car
<span>HTTP streaming</span>
<em>0:20 min</em>
</a>
............
</div>
【问题讨论】:
标签: php video splash-screen flowplayer