从 UDP 获取 TRANSPORT STREAM 的文档
是否有免费文档可用于从网络捕获的 UDP 数据包获取传输流?
Is there a free documentation for getting the Transport Stream from UDP packets captured from the network?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种在 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.