Page 1 of 1

--rtp-timeout problem

Posted: 14 Oct 2014 17:11
by marranxo
Hi,

Due to detect earlier stream failures/disconnections (10s is too much for me) I've been testing the --rtp-timeout (--rtp-timeout=5000) param in the args passed to libvlc_new and either (:rtp-timeout=5000) in libvlc_media_add_option but it's not working.

I'm connecting to IP cameras throw RTSP RTP/AVP/UDP, opening the media with libvlc_media_new_location and using memory render (libvlc_video_set_callbacks / libvlc_video_set_format).

Any tip? Thanks and sorry for my bad english.

Re: --rtp-timeout problem

Posted: 15 Oct 2014 11:17
by marranxo
I've also tryed with --rtp-timeout=5 as the parameter description says (sec) but same behaivour, the player reaches timeout at 10s without receiving any udp packet. Is there any known parameter to control RTSP RTP/AVP/UDP input timeout?

Re: --rtp-timeout problem

Posted: 15 Oct 2014 11:26
by RĂ©mi Denis-Courmont
There is no such option at the moment. You can force interleaving with --rtsp-tcp though.

Re: --rtp-timeout problem

Posted: 15 Oct 2014 11:33
by marranxo
Hi Remi,

Then I'll try to request it to devels.

Thanks a lot for your time.