Playlist stops after each playlist item and doesn't loop
Posted: 11 Nov 2010 13:33
hi,
i am using the vlc firefox plugin 1.1.4 and want some movies played looped in a playlist.
the problem is the movie stops playing after each playlist item and the playlist also doesn't loop at the end.
here is the code:
any ideas??
thanks,
marc
i am using the vlc firefox plugin 1.1.4 and want some movies played looped in a playlist.
the problem is the movie stops playing after each playlist item and the playlist also doesn't loop at the end.
here is the code:
Code: Select all
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"
width="640"
height="480"
loop="true"
id="vlc">
</embed>
<script>
var vlc = document.getElementById("vlc");
vlc.playlist.add('http://localhost/movies/bla.mp4', "bla");
vlc.playlist.add('http://localhost/movies/bla.mp4', "bla");
vlc.playlist.play();
</script>
thanks,
marc