从 UDP 获取 TRANSPORT STREAM 的文档

发布于 2024-09-30 10:42:34 字数 37 浏览 3 评论 0原文

是否有免费文档可用于从网络捕获的 UDP 数据包获取传输流?

Is there a free documentation for getting the Transport Stream from UDP packets captured from the network?

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

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

发布评论

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

评论(1

脸赞 2024-10-07 10:42:34

有两种在 UDP 中传输 MPEG2 传输流的方法。一是二,只需将几个 MPEG2 TS 帧放入 UDP 数据包中。另一种是将多个帧放入一个 RTP 数据包中(该数据包本身就是 UDP 数据包的有效负载)。 Wikipedia 条目是该格式的一个很好的起点。如果 UDP 数据包中的第一个字节是 0x47,则很可能是纯 UDP 中的 TS。如果是其他内容,通常是 RTP 中的 MPEG2 TS。

如果是 RTP,则必须跳过标头才能找到有效负载的开头。有关详细信息,请参阅 RfC

There are two ways of transporting a MPEG2 transport stream in UDP. One is two just place a couple of MPEG2 TS frames into a UDP packet. The other is to put a number of frames into an RTP packet (which itself is the payload of a UDP packet). The Wikipedia entry is a good starting point for the format. If the first byte in your UDP packet is 0x47, it's most likely TS in plain UDP. If it is something else, it's usually MPEG2 TS in RTP.

If it is RTP, you have to skip the header to find the begin of the payload. See the RfC for details.

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