Hello,
I stream video on vlc with the following code:
Media m = new Media( libvlc, media ); // media is sdp file
m.setHWDecoderEnabled( true, true );
m.addOption( ":network-caching=10" );
m.addOption( ":clock-jitter=0" );
m.addOption( ":clock-synchro=0" );
Notice that ":network-caching=10" for low latency.
Things work well but the big problem is when running out of Media cache, and the stream loses quality.
So if I could clean the Media cache at run-time I might solve the problem.
Does anyone knows if this is possible ?
Thank you