Hi there.
I was trying to get the pseudostreming with the h264streaming-plugin running, but it seem to cause some problems. i installed the streaming module on the apache and the suggested tests on the code-shop pages are working well. when i uploaded the example delivered with the streamingplugin and changed the paths to actual videos on my server, everything worked fine.
but if i am trying to add the plugin to my running setup with a playlist, the player doesnt start. no controls, nothing but the background-picture of the player. this is my basic setup so far:
$(function() {
	
				// setup player without "internal" playlists
				$f("player2", "player/flowplayer.commercial-3.2.7.swf", {
					key: '(ourcommercialkey)',
					clip: {scaling: 'fit',
							baseUrl: '{$player_base_url}', 
							autoPlay: false,
							provider: 'h264streaming'
					},
					plugins: {
						h264streaming: {
							url: 'player/flowplayer.h264streaming-3.0.5.swf'
						},
						controls: {
							url: 'player/flowplayer.controls-3.2.5.swf',
							play:true,
							fullscreen:true,
							scrubber:true
						}
					}
					
					
				// use playlist plugin. again loop is true
				}).playlist("table.playliststil", {loop:false});
				

can anybody guess whats wrong or had a similar problem? every little hint is deeply appreciated.
my guess is that the playlist-plugin is causing the problems, but it is essential for my whole project.
thank you so much in advance!

//EDIT: Found the problem, this setup is working fine with the pseudostreaming-plugin "flowplayer.pseudostreaming-3.2.7.swf."

sorry to have bothered you.