计算丢包、抖动和延迟

发布于 2024-09-05 08:51:29 字数 56 浏览 4 评论 0原文

我正在将 rtsp 视频流式传输到 Android。
如何计算丢包、抖动或延迟等网络指标?

I am streaming an rtsp video to Android.
How could I calculate network metrics like packet loss, jitter or delay?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

愁杀 2024-09-12 08:51:29

我可以回答丢包和抖动问题。

对于丢包:仅计算丢失的序列。保留最后一个数据包的序列,看看是否有超过 1 的步数。
如果网络中进行了重新排序,则需要将先前的序列保留在内存窗口中,并在数据包到达时将其填充,然后检查丢失的序列。

对于抖动 - 只需保留客户端接收数据包的时间,并计算数据包的实际接收时间和预期接收时间之间的平均差(假设您可以预测数据包的预期接收时间 - 例如,如果您有一个常数FPS)。

I can answer that for packet loss and jitter.

For packet loss: Just count missed sequences. Keep the sequence of the last packet, and see if you have steps of more than 1.
If you have reordering in your network, you will need to keep in a memory window previous sequences and fill it up as packets arrive, then check missed sequences.

For jitter - just keep the times where your client receives packets, and calculate the average difference between the actual received time and the expected received time of packets (assuming you can predict the expected receive time of packets - for example, if you have a constant FPS).

堇年纸鸢 2024-09-12 08:51:29

Wireshark 对嗅探到的数据包进行 RTP 统计计算。

Wireshark has RTP statistics calculation for sniffed packets.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文