Thanks RSATom - I tested fbVlc and got it basically working.
Some questions:
1. Is there a Mailinglist/Forum/.. for fbVlc? I doubt this here is the correct place for questions about it.. anyway:
2. I'm having problems using the method
playlist.addWithOptions(mrl, options)
If I call it like this:
Code: Select all
playlist.addWithOptions("url", "--rtsp-tcp :network-caching=2500")
I get the following exception in IE:
Code: Select all
Invalid argument conversion from class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > to class boost::shared_ptr<class FB::JSObject> at index 2
And in Chrome:
(The URL is correct, if I call it using playlist.add("URL") things work fine. I know that I could set up networking-caching in the params-sections of the object, but sometimes I need other options to pass, like --rtsp-tcp, etc. [dont remember exactly])
3. How up-to-date is the doc of fbVlc?
For example, in the vlc-plugin it says about playllist.clear():
vlc.playlist.clear(): empty the current playlist, all items will be deleted from the playlist (deprecated, do not use, see Playlist items)
while in fb-vlc it says:
.playlist.clear(): empty the current playlist, all items will be deleted from the playlist.
So, is it safe to use playlist.clear() in fb-vlc for example, or is this a mistake in the doc? (and there might be other mistakes)
Reason I'm asking is because I was mostly disappointed of vlc-plugin because things do not work as described in the doc sometimes.
Thanks for any help.