Playlist based splash image Configuration - Demo 2 / 8
Introduction
In this configuration splash is configured into a playlist as the first "clip". This configuration is good when you want to prebuffer your videos into the player's memory so that they play smoothly right from the very beginning. This is not possible with regular splash image.
Configuration
We have two entries in a playlist. First clip is an image and second clip is a movie file. When movie is setup so that won't start automatically the previous clip will be shown it it's an image.
flowplayer("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
// here is our playlist with two clips
playlist: [
// this first PNG clip works as a splash image
{
url: '/img/title/screens.png',
scaling: 'orig'
},
// second clip is a video. when autoPlay is set to false the splash screen will be shown
{
url: 'http://pseudo01.hddn.com/vod/demo.flowplayervod/flowplayer-700.flv',
autoPlay: false,
// video will be buffered when splash screen is visible
autoBuffering: true
}
]
});
Show me a standalone version