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 &...