I am writing a server which live streams mpeg2-ts on HTTP and I wondered what's the best position to split an mpeg transport stream. The stream is going to be played by iptv set-top boxes and I have no idea how these devices behave.

I would think that the best place to start a stream is before an I-Frame, but the device might need the PAT and PMT packets before it starts to decode video stream data...

link|improve this question

58% accept rate
feedback

1 Answer

You can start with every 188-byte TS packet (0x47 is the start code). The MPEG decoder automatically jumps in at the first I frame. You can do tricks like MS Mediaroom does with sending burst I-frames, but this requires heavy changes to your client (and patent royalities).

link|improve this answer
Theoretically, yes.. practically I was sometimes able to crash a lame set-top box (which is btw quite popular here) by doing that (no, I don't start at any 0x47, I know it's a TS packet start). Also decoder starts before first I-frame so I see some bad decoded frames for half a sec.. – Karoly Horvath Jul 12 '11 at 7:29
feedback

Your Answer

 
or
required, but never shown

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