Ref: https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_NTP_Timestamp.html
Example method to check if RTSP source sends RTCP sender reports using a tool like tshark:
Note
We assume RTSP source has IP address
192.168.1.100
Install tshark on a host:
sudo apt-get install tshark
Find the host network interface that would be receiving the RTP/RTCP packets:
$ sudo tshark -D ... eno1 ...Start the monitoring using tshark tool. Replace the network interface and source IP as applicable:
$ sudo tshark -i eno1 -f "src host 192.168.1.100" -Y "rtcp"On the same host, start streaming from the RTSP source only after starting the monitoring tool. Any client may be used:
$ gst-launch-1.0 rtspsrc location= <RTSP URL e.g. rtsp://192.168.1.100/stream1> ! fakesinkThe output of the tshark monitoring tool should have lines containing
"Sender Report Source description"
. Here is a sample output:6041 10.500649319 192.168.1.100 → 192.168.1.101 RTCP 94 Sender Report Source description
No comments:
Post a Comment