Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 RTP 数据包,我使用 pcap.net 数据包对象。我需要从数据包中获取实际的音频数据,没有 RTP 标头 - 只是有效负载。
语言:C#
谢谢,奥菲克
RTP 标头长度通常为 12 字节。使用 pcap.net 你可以创建一个 udp 对象。
UdpDatagram udp = null;
然后使用
udp.Payload.ToHexadecimal();
所以你会得到完整的 RTP 。在上面的十六进制字符串中删除前 12 个字节,这将是 rtp 数据(例如:语音)。