You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

RSS playlist and the playlist plugin JavaScript Plugins - Demo 8 / 11

Introduction

This demo continues from this RSS playlist demo which loads the playlist entries from this external RSS playlist file. This demo shows how this configuration works with the playlist plugin.


Flowplayer configuration

As being said the configuration is the same as in RSS playlist demo.

flowplayer("player", "/swf/flowplayer-3.1.5.swf", {
		
	// common clip properties are valid for the RSS playlist entries
	clip: {
		baseUrl: 'http://blip.tv/file/get'
	}, 
	 
	// playlist is configured from a RSS playlist file
	playlist: '/demos/configuration/playlist.rss', 

	
	// show playlist buttons
	plugins: {
		controls:  {
			url: 'flowplayer.controls-tube-3.1.5.swf',
			playlist: true		
		}
	}
	
});

Playlist configuration

Our playlist is simply plugged into the player. Look for the standalone example for the HTML configuration.

$f().playlist(".entries", {loop: true});

Take a look at a standalone version of this demo. View its source code to get things going on your page.