Need help badly...
I got VLC 1.05 play my capture card perfectly. I can even set preference so that I can open vlc and play. No need to modify any setting. But, when I embedded vlc in my IE8 (XP sp3), I already know plugin will not use vlcrc, I do javascript API playlist.add(url, url, options). But, seems like most of the :dshow-xxx stuff don't work. I only want to set ":dshow-video-input=3" and ":dshow-size=720x480". Code are very typical,
var vlc = document.getElementById("vlc");
var options = new Array(":dshow-video-input=3", ":dshow-size=720x480");
var id = vlc.playlist.add("dshow://", "player", options);
vlc.playlist.playItem(id);
I also try playlist (m3u) from plugin and don't work either. Did I do something wrong? Anyway to get it work? I need this desperately. Any help will be every appreciated.