Page 1 of 1

VLC RTSP disable audio stream

Posted: 25 Jul 2013 16:19
by acquleo
Can i prevent vlc to request the audio track via RTSP? (disable SETUP command on audio track).
We have to keep audio enabled on camera (AXIS) because other services need audio stream.
I need to disable the audio stream because the first rtsp connection is slower on axis camera with audio enabled.
Thanks
Leonardo

Re: VLC RTSP disable audio stream

Posted: 26 Jul 2013 21:21
by Agron
Add --no-audio to your libvlc_new function call.

Code: Select all

const char * const vlc_args[] = { "-I", "dummy", /* Don't use any interface */ "--ignore-config", /* Don't use VLC's config */ "--aspect-ratio=4:3", "--no-audio" };