Android - 如何捕获RTP数据包
我可以使用 VideoView
类在 Android 上查看来自 Darwin Streaming Server 的流视频。
我只需要获取 RTP 数据包中的序列号字段即可测量数据包丢失率。
您能否告诉我如何捕获 RTP 数据包的一般概念?
这是socket编程吗?如果可能,请告诉我正确的步骤。
I can view the streaming video from Darwin Streaming Server on Android using VideoView
class.
I just need to get the sequence number field in an RTP packet to measure Packet Loss Rate.
Could you give me general idea of how to capture an RTP packet?.
Is that socket programming? Please tell me the proper step if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android 上的 tcpdump - https://www.androidtcpdump.com/
观看/捕获实时跟踪
adb exec-out “tcpdump -i 任何 -U -w - 2>/dev/null”| wireshark -k -S -i -
https://blog.wirelessmoves.com/2017/02/adb-and-tcpdump-on-android-for-live-wireshark-tracing.html
tcpdump on Android - https://www.androidtcpdump.com/
watching/capture live traces
adb exec-out "tcpdump -i any -U -w - 2>/dev/null" | wireshark -k -S -i -
https://blog.wirelessmoves.com/2017/02/adb-and-tcpdump-on-android-for-live-wireshark-tracing.html