Hi, Everyone
I want to play a playlist over the web but the script takes only a single file and play it. The question i want to ask is how can i play a playlist (e.g playlist.xml) my code is
myvlc = new VLCObject("mymovie", "600", "350");
myvlc.addParam("MRL","http://code.revolunet.com/VLCjs/rambo.mpg");
myvlc.write("vlccontent");
// load controls
vlc_controls = new VLCcontrols(myvlc);
vlc_controls.onready = function () {
alert(names[0]);
vlc_controls.play("video.wmv");
if i provide playlist.xml instead video.wmv it is not playing. with this script i am using VLCcontrols.js file.