Mencoder has a lovely option for converting a mjpeg file into an avi file with an 'MJPG' codec that plays in VLC.

The command line to do this is:

mencoder filename.mjpeg -oac copy -ovc copy -o outputfile.avi -speed 0.3

where 0.3 is the ratio of the desired play framerate to the default 25 fps. All this does is make a copy of the mjpeg file, put an avi header on top and at the end, what seems to be an index of the frame positions in the file.

I want to replicate this in my own code, but I can't find documentation anywhere. What is the exact format of the index section? The header has extra filler bytes in it for some reason - whats this about?

Anyone know where I can find documentation? Both mencoder and vlc seem to have this codec built in.

link|improve this question

74% accept rate
Make the title a question. If you are a programmer you should know, that the source is the documentation: videolan.org/developers – ceving Aug 16 '11 at 11:44
I think its the same as the ffmpeg codec for mjpg as one of my systems here, which has ffmpeg, plays the files happily in windows media player, while the one without doesn't play. – Sugrue Aug 16 '11 at 11:44
I may have found it: ffmpeg.org/doxygen/0.6/mjpeg_8h-source.html – Sugrue Aug 16 '11 at 11:49
Ah ha! It seems the index at the end of the files is actually part of the avi standard, but rarely used. msdn.microsoft.com/en-us/library/dd318181(v=vs.85).aspx – Sugrue Aug 16 '11 at 13:41
feedback

1 Answer

up vote 0 down vote accepted

After much work, study and fiddling around with HxD and RiffPad, I finally figured it out. It would take a long blog entry to explain it all, but basically there isn't really an 'MJPG' codec out there - mjpg just uses a few tricks and unusual parts of the avi standard to produce an indexed file.

The key is to place '00dc' and an Int32 length tag 8 bytes in front of each Jpeg open tag. If you want the avi to be random access, then you need an index at the end which points to each of the '00dc' tag positions.

VLC will play this natively. If you have ffmpeg installed, then Windows Media Player uses that to decode these types of mjpg files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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