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
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?
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?