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

Your preferred username that is used when logging in.

MP4 pseudostreaming with FLV fallback Streaming plugins - Demo 2 / 6

Introduction

Flowplayer pseudostreaming plugins supports streaming of high quality H.264 videos. These offer better quality than FLV videos. Look for following demo on fullscreen mode and you'll see the difference.

Search engine friendly content

H.264 videos are only supported by Flash version 9.0.115 and above and for this reason we offer regular FLV file for older Flash versions. This kind of setup is used as the first demo on Flowplayer home page.

Flowplayer configuration

First thing you should to is to prepare your video files for pseudostreaming. After that you can setup things as follows.

flowplayer("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
		
	// this will enable pseudostreaming support 
	plugins: { 
		pseudo: { url: 'flowplayer.pseudostreaming-3.2.7.swf' } 
	},
	
	// clip properties 
	clip: {
		
		// our clip uses pseudostreaming
		provider: 'pseudo',						
		
		// provide MP4 file for Flash version 9.0.115 and above. otherwise use FLV
		url: flashembed.isSupported([9, 115]) ? 
			'http://pseudo01.hddn.com/vod/demo.flowplayervod/eye-pseudo.mp4' : 
			'http://pseudo01.hddn.com/vod/demo.flowplayervod/flowplayer-700.flv'
		
	}
	
});

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