how big is the difference between a MJPEG and a MPEG-4 encoded stream ? I have an IP Camera which is capable of saving data to a 32 MB Buffer, in MJPEG Format or in MPEG-4. Resolution is 800x600 at 30 FPS Now when I streamed with MJPEG I could save like a 40-50 seconds. When streamed with MPEG-4 I could save 8 minutes ( if there was almost no motion ) and like 3 minutes if there was a lot of motion.

I know that the size of the MPEG-4 depends on how much motion / changes there were but what I am wondering about is the fact that even with full motion the MPEG-4 can save so much more video than MJPEG ? Is the compression of MJPEG really "that bad" ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

M-JPEG is not really bad, it is awesome instead. The encoding is widely supported, each individual frame can be decoded without references to other stream data. Yes, the compression rates are not as efficient as those of achievable with MPEG-4.

There is often an option to set MPEG-4 streams to match desired bitrate (CBR encodings) which is a good way to control bandwidth and actual bitrates. It is a rare option with JPEG encoding.

Check this out: MJPEG vs. H.264 with video surveillance cameras (which itself refers to another interesting reading Why we like MJPEG compression).

link|improve this answer
Well, I see, when I have much motion in my stream I should rather use MJPEG, since the difference in the filesize shouldn't be so much. But still, it makes for my application ahuge difference if I can save 50 secs of stream or 3 minutes. – Toby Jan 30 at 12:55
So use MPEG-4/H.264 then. It's a bandwidth/storage saver. – Roman R. Jan 30 at 13:15
Okay , so just to sum it up - this "huge" difference between the two codecs is real and quite normal? I am not doin something crucial wrong? ^^ – Toby Jan 30 at 13:59
1  
No, it's fine. As compared to JPEG, MPEG-4 codecs are more recent and more complicated, they do temporal compression, they basically use more advanced technology. Hence, the higher compression rates are what they are here for. – Roman R. Jan 30 at 14:15
Allright then! Thank you for your help! – Toby Jan 30 at 14: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.