hi. i have a pcap with RTP packets. in this pcap i have no SIP or SDP packets(only RTP).and payload type field is dynamic. How can i find out payload type? ALL payloads start with 0x000001B2? and marker bit is set in all packets. are these packets containing MPEG? i know that payloa_type=32 has been assigned to MPEG. but is it possible that these packets are MPEG? asked 15 Jul '17, 11:58 hhw edited 15 Jul '17, 12:12 grahamb ♦ |
One Answer:
If you have just the RTP stream with no SDP describing it, you can guess about media type (audio, video, image) and codec only by bandwidth, regularity of packet timing and size, and the contents of the payload. Other than that, are you sure the 0x000001b2 is part of the payload, can't it be the SSRC which directly precedes it? answered 15 Jul '17, 12:16 sindy edited 15 Jul '17, 12:28 |