I've read several times about people having problems with this. Does it work now? Are there any fixes?
To be concrete I want to have a non-manual playlist such as, but combine with scrollable. Playlist on its own works fine.
To be concrete I want to have a non-manual playlist such as, but combine with scrollable. Playlist on its own works fine.
<div id="playlistwrap" >
<div id="playcol" class="clips col">
<!-- single playlist entry as an "template" -->
<a href="${url}">
${title}
<br>
</a>
</div>
</div>
<script>
$(function() {
// setup player
$f("player", "/alantest/public/js/flow310/flowplayer.swf", {
autoPlay: true,
autoBuffering: true,
clip: {
provider: 'lighttpd',
bufferLength: 1,
scaling: 'fit'
},
playlist: [
{
url: 'http://192.168.0.10:81/uploads/710/634/clip0.flv',
title: 'foo',
}
,
...
],
// show playlist buttons in controlbar
plugins: {
controls: {
playlist: true,
fullscreen: false
},
lighttpd: {
url: '/alantest/public/js/flow310/flowplayer.pseudostreaming.swf'
}
},
});
$f("player").playlist("div.clips:first", {loop:true});
});