Code: Select all
vlc --http-caching=10000 http://cap:2080/live/stream
Code: Select all
var vlc = document.getElementById("vlc");
var options=new Array(
':http-caching=20000'
);
vlc.playlist.add('/live/stream', null, options );
vlc.playlist.play();
Code: Select all
var vlc = document.getElementById("vlc");
vlc.playlist.add('http://cap:2080/live/stream', 'Live Stream', 'http-caching=20000');
vlc.playlist.play();
Code: Select all
var vlc = document.getElementById("vlc");
vlc.playlist.add('http://cap:2080/live/stream', 'Live Stream', ':http-caching=20000');
vlc.playlist.play();
Is there an alternate way to specify the http-caching option to the plugin? Has anyone had success with http-caching and the moz plugin?
Thanks!