here's the javascript code I'm using to add a xspf file (a playlist) to the plugin's playlist.
Code: Select all
playlist="D:\playlists\playlist1.xspf";
vlc.playlist.items.clear;
var id = vlc.playlist.add(playlist);
vlc.playlist.playItem(id);
the path is a local path because i want to load the file locally, not from a web server
the xspf file is ok, it loads with vlc.exe
if it matters: OS - Windows, browser - Google Chrome
i would appreciate any suggestions. thanks