I have written a program where i get udp packet from a multicast address. Now i need to extract the mpegts from this packet. I am able to take the payload of the udp packet. Can some one help me to extract the mpeg header from the udp packet.

link|improve this question

20% accept rate
feedback

1 Answer

up vote 1 down vote accepted

MpegTS is typically transported over UDP with RTP. Skip the RTP header. The rest (188*7 bytes) is the payload, 7 TS packets. Each packet should start with 0x47.

Update:

There are multiple packetizing layers each wrapping/chunking the sequence. The upper layers are quite nice, the bottom one (elementary stream) is codec dependent and quite messy.

MPEG TS - MPEG PES - MPEG ES

link|improve this answer
Thanks u for the information...Is there any structure where i can reuse. I do not have an RTP header with in the packet. so i have only the mpeg packet. How do i traverse the header because i am not storing it in any file. I capture the packet from a multicast address and i have to do the processing. – iwant2learn Jul 12 '11 at 9:54
what kind of processing is this? you could use ffmpeg for recoding. – Karoly Horvath Jul 12 '11 at 10:11
its a multicast routing program, where i need to process the udp packets arriving at two different ports of a multicast address. I have to perform a switching operation between the two stream arriving at the two ports. – iwant2learn Jul 13 '11 at 8:23
I guess the codecs for the two stream are the same, right? still, you might have to do a lot of transformation... reference clocks going to differ, maybe program tables (PAT & MPT) as well. and you have to switch on reference frames. that's sounds quite complex. You probably have to do recoding, but I'm not quite sure. Check gstreamer. Let me know if you managed to do this! – Karoly Horvath Jul 13 '11 at 8:41
Yes the two stream have the same codec and in fact both are same stream but differently watermark. Can u suggest me more on how to update the PAT and PMT tables. Thanks for the advice. Will surely update if i am able to do the operation. – iwant2learn Jul 13 '11 at 12:46
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.