Hi Everyone,
I'm trying to capture RTCP packets using Wireshark on the server. I think I'm doing something wrong. Here is my setup: From a server laptop, I send two unicast, RTP streams (the same video) to two different ports (even numbered) on a client laptop. I'm using VLC 1.1.5 and the following command line on the server:
% vlc myvideo.wmv --sout #duplicate{dst=display, dst=rtp{dst=<client_ip>,port=1234,mux=ts}, dst=rtp{dst=<client_ip>,port=1236,mux=ts}}
I can see the video playing on the server as well as on two instances of the VLC client (by opening network streams on appropriate ports). So things are getting streamed on the two ports and are playing correctly. However, on the server laptop, I have setup Wireshark to receive RTCP packets (filtered from ip.src=<client_ip>), but I don't see anything. Why is that? Do I need to use RTSP to get the RTCP packets?
thanks,
Amit