Skip to main content

Thread: Video codec advantages vs disadvantages


what favorite video codec (avi, divix, mpeg, etc), , how make them?

have bunch of vob. files windows dvd rips , make single compressed files pc playback only.
codec should use? can adjust bit rate or resolution preferences? program should use?

thanks.

avi not codec, container format. divx codec, brand of series of products, including divx codec, divx player , divx container. proprietary , run on windows , mac. open source equivalent codec, available linux xvid. mpeg standard audio/video compression, includes container , specifications used several codecs.

examples of video containers: avi, mp4, mkv, mov, mpeg, ogg.

use mkv, avi , mp4. mkv best in opinion, because supports multiple streams , features, including subtitles. formats better others, depending on how going watch. instant, hardware xbox, ps3 , standalone dvd players have limitations on formats , codecs can play.

codecs, use ffmpeg's libavcodec codec family, more mpeg4 (mpeg-4 asp), mjpeg (motion jpeg) , libx264 (mpeg-4 avc/h.264) video , libfaac (aac) , mp3lame (mp3) audio stream.

convert vobs can use mencoder.

examples of mencoder commands using codecs/formats:

code:
mencoder source.vob -o output.avi -oac lavc -lavcopts acodec=libfaac:abitrate=128 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200
code:
mencoder source.vob -o output.avi -oac lavc -lavcopts acodec=libfaac:abitrate=128 -ovc lavc -lavcopts vcodec=mjpeg:vbitrate=1200
code:
mencoder source.vob -o output.mp4 -oac lavc -lavcopts acodec=libfaac:abitrate=128 -ovc lavc -lavcopts vcodec=libx264:vbitrate=1200
the x264 extremely slow, renders best quality results. don't use it. best speed/quality ratio find mpeg4. mjpeg codec renders better results mpeg4 decent encoding speed, although bigger file sizes.

fore more info mencoder options see this

can transcode/edit/merge several formats mkv files mkvtoolnix-gui.

see these:

http://en.wikipedia.org/wiki/video_c...d_video_codecs
http://en.wikipedia.org/wiki/comparison_of_video_codecs
http://en.wikipedia.org/wiki/comparison_of_audio_codecs


Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Multimedia Software [all variants] Video codec advantages vs disadvantages


Ubuntu

Comments

Popular posts from this blog

Error: ‘for’ loop initial declarations are only allowed in C99 or C11 mode - Raspberry Pi Forums

class MPU6050 has no member named begin

missing filename after '-o'