Page 1 of 1

change cache settings Mozilla Plugin

Posted: 27 Dec 2009 01:43
by piecko
Hi everybody,

I need to modify the cachingtime for http streams with the mozilla plugin.
Does anybody know, how to do this?
What I found out, is that it was changed with version 0.8.6.
I can't believe, there is no way to modify it anymore. :(

Greetz

Piecko

Re: change cache settings Mozilla Plugin

Posted: 27 Dec 2009 22:37
by thannoy
When using the Javascript API, add your media to the playlist this way (example with 1200 ms caching):

Code: Select all

yourVLCnode.playlist.add("http://server.exemple.com/stream.vid", "foo title or null", ":http-caching=1200");
Then play the one-item playlist:

Code: Select all

...playlist.play();