I am using flowplayer to play videos on my site, and i have configured a playlist with 4 videos, similar to this: Flowplayer Playlist
But what i saw is that, the video portrays a Play button on the video, upon clicking on which, i can play the video.
Instead, i would like to have the first frame of the first video as the splash screen on the video.
I tried with these settings, but they did not work:
$(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});
});
And the video playlist is configured as:
<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>