rtpdump icon indicating copy to clipboard operation
rtpdump copied to clipboard

Extract audio file from RTP streams in pcap format

Results 3 rtpdump issues
Sort by recently updated
recently updated
newest added

It looks like if the pcap file contains VLAN tag, the program wounld not work. The RtpCapureFilter in rtplayer.go set to not support VLAN. Change the Filter string "vlan and...

hi, 我找到一个bug, SequenceNumber 是uint16,不断增加的, 最大值是 65535, 到65535后会溢出, 又从0开始. ``` func (r *RtpStream) AddPacket(rtp *RtpPacket) { if r.CurSeq == 65535 { r.CurSeq = 0 } if rtp.SequenceNumber

In codecs/amr.go HandleRtpPacket: ` if packet.SequenceNumber