Hi all,
I am using libvlc to capture video stream and send via rtp in my application. Through the following command:
sout=#duplicate{dst=display,dst={transcode{venc=x264,vcodec=h264,vb=120}:rtp{mux=ts,dst=192.168.0.3,port=1234}}}
I can set the remote IP and port as: 192.168.0.3:1234
And I want to set the special local rtp port for libvlc, the send port for video stream using by libvlc. I have try the following :
sout=#duplicate{dst=display,dst={transcode{venc=x264,vcodec=h264,vb=120}:rtp{mux=ts,dst=192.168.0.3,port=1234,portvideo=8888}}}
But it can not make sense. Can somebody tell me how to set ?
Thanks in advance!
xutm