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

Your preferred username that is used when logging in.

mp3 through rtmp + visual playlist Created Oct 28, 2009

This thread is solved

Views: 1747     Replies: 1     Last reply Oct 30, 2009  
You must login first before you can use this feature

dddennis

Posts: 2

Registered:
Oct 28, 2009

mp3 through rtmp + visual playlist

Posted: Oct 28, 2009

I've been trying to figure the following out for ages but I can't seem to make it.

I want to have a visible playlist for rtmp-mp3-files. Here's what i've been trying:

head loads flowplayer-3.1.4.min.js & flowplayer.playlist-3.0.7.js

<script>
$(function() {
	
	// setup player normally
	$f("player1", "/folder/to/flowplayer-3.1.5.swf", {
	
		// clip properties common to all playlist entries
		clip: {
				provider: 'cdn',
				autoPlay: false,
				scaling: 'scale',
				bufferLength: 3,
		},
		
		// show playlist buttons in controlbar
		plugins: {
			
			cdn: {  
            url: '/folder/to/flowplayer.rtmp-3.1.3.swf',  
            netConnectionUrl: 'rtmp://e1f1.simplecdn.net/play'
             },
             
               gatracker: { 
             url: 'folder/to/flowplayer.GoogleTracker.swf',
              google_id: 'UA-323401-4',
              debug: false
              },
			controls: {
			
				playlist: true
				height: 25
			}
		}
 }).playlist("#playlist", {loop:true});

	});
	
	
	
});

</script>

<div class="clips" style="float:left" id="playlist">
	
	
		 	<a href="mp3:folder/filewithoutmp3extension" class="first">
                         title</a>
		 	<a href="mp3:folder/nextfile">
			 next title</a>
		 	etc
</div>		

<a class="player plain" id="player1" style="float:left">
</a>

playing a single file works fine, but this setup doesnt work at all, it neither plays nor loads anything

can anyone point me in the right direction? Or won't this work in the first place?

dddennis

Posts: 2

Registered:
Oct 28, 2009

» mp3 through rtmp + visual playlist

Posted: Oct 30, 2009

Reply to: mp3 through rtmp + visual playlist, from dddennis
Just to let you know, I gave up on this approach and now run it through an RSS-playlist, which works remarkably well!