Page 1 of 1

How to VLC receive RTP stream ?

Posted: 23 Nov 2012 04:12
by csj561
I readed VLC source code ,but I don't understand vlc how to receive RTP stream.
I did a test and marked on modules/access/rtp.c.Then ,I find that this module didn't loaded when play.
So I want to know which module used receiving RTP stream?

Re: How to VLC receive RTP stream ?

Posted: 23 Nov 2012 10:34
by Rémi Denis-Courmont
Depending on the case, VLC might use liblive555 to receive RTP/RTCP.

Re: How to VLC receive RTP stream ?

Posted: 26 Nov 2012 02:54
by csj561
Depending on the case, VLC might use liblive555 to receive RTP/RTCP.
Thank u.I think so.
But I want to use modules/access/rtp.c this module to receive RTP stream,because I can't modify liblive555' code and I need SRTP in RTP.What should I do?Disable live555 when configure?

Re: How to VLC receive RTP stream ?

Posted: 26 Nov 2012 08:26
by Rémi Denis-Courmont
You should use the native input then, obviously.

Re: How to VLC receive RTP stream ?

Posted: 26 Nov 2012 08:46
by csj561
You should use the native input then, obviously.
en,I need vlc support SRTP protocol or need a player which support SRTP protocol .The native VLC don't sorpport it,although VLC has SRTP module,but the module will not be ran when play.
Do you have any ideas ?

Re: How to VLC receive RTP stream ?

Posted: 29 Jan 2013 03:00
by ubootme
You should use the native input then, obviously.
en,I need vlc support SRTP protocol or need a player which support SRTP protocol .The native VLC don't sorpport it,although VLC has SRTP module,but the module will not be ran when play.
Do you have any ideas ?
I am also in progress of dealing srtp sending/recving,and if possible,we can discuss this together? :》

Re: How to VLC receive RTP stream ?

Posted: 29 Jan 2013 20:10
by Rémi Denis-Courmont
SRTP does not really mean anything. SRTP is easy to implement and VLC already supports it.

The difficult part is key negotiation, via MIKEY, zRTP, DTLS or whatever. VLC does not support any of that.