0

I have a video streamer (VLC) which is using RTP to stream video to a client. I have captured the packet trace from both the sender and the receiver side using tcpdump separately.

The streaming produces UDP packets. It is possible that some packets are missing/out of order on the receiver side. Assume that the clocks on both the machines are synchronized.

My task is to find the delay between the packets

Q : Is there any tool which can compare both the dump files and generate UDP statistics, specifically delay?

1
  • Any help? Anyone?
    – xavier666
    Commented Jan 23, 2017 at 11:53

3 Answers 3

0

Wireshark offers support for RTP Analysis.

See also these RTP-related Wireshark wiki pages: RTP, RTP Statistics.

0

I had to do it manually. I wrote a python script which

  • extracts the packet from each pcap file (sender and receiver)
  • compares their payload
  • if it's a match and timestamps are causally correct, then delay is calculated
  • If a match is not found over a certain window size (I kept it as 100), the packet is assumed to be lost and we move to the next packet

I did this over the entire pcap file and made an average over all the delays. If somebody wants it, I can share the code.

0

I would like to know if there is any change to filtering RTP headers in TCPDUMP. When I have some files from TCPDUMP with a space bigger than my memory RAM can support, I can get delay, packet loss, and jitter.

Could you please provide some guidelines to do this to finish my report from my master's degree?

Thanks

2
  • As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.
    – Community Bot
    Commented Apr 22, 2023 at 10:47
  • This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. To get notified when this question gets new answers, you can follow this question. Once you have enough reputation, you can also add a bounty to draw more attention to this question. - From Review Commented Apr 22, 2023 at 11:27

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .