2.4. Encoding with MEncoder

Overview

MEncoder (MPlayer's Movie Encoder) is a simple movie encoder, designed to encode MPlayer-playable movies (AVI/DVD/VCD/VOB/MPG/MOV/VIV/NET) to other MPlayer-playable formats (see below). Currently it's in beta stage, and encodes only to DivX4 (1 or 2 passes) video, PCM/MP3/VBRMP3 audio. Also has stream copying abilities. In the future, there will be cropping, resizing filters, and other interesting stuff.

Compiling

You are ready. As you probably know, other encoding tools need the avifile library installed. MEncoder doesn't need it at all.

MEncoder features :

Planned features :

Encoding 2-pass DivX4

The name comes from the fact that this method encodes the file twice. The first encoding (dubbed pass) creates some temporary files with a size of few megabytes (do not delete them yet). In the second pass, the output file is created, using the bitrate data from the temporary file. The resulting file will have much better image quality. If this is the first time you heard about this, you should consult some guides available on the Net.

This example shows how to encode a DVD to a 2-pass DivX4 AVI. Just two commands are needed :
    mencoder -dvd 2 -ovc divx4 -oac mp3lame -divx4opts br=1100 -o movie.avi -pass 1
    mencoder -dvd 2 -ovc divx4 -oac mp3lame -divx4opts br=1100 -o movie.avi -pass 2

Rescaling movies

Often the need to resize movie images' size emerges. Its reasons can be many, examples are decreasing output file size, encoding SVCDs to DivX. Ripped DVDs are mostly rescaled, for example a 4:3 DVD should be 640x480, especially when you want it to fit to 1 CD, and have good quality at the same time. SVCDs have 480x480 size, and their header contains the aspect ratio the player should use (Ex.: 480x480 + 4:3 = 640x480). However when encoding to AVI (DivX) files, you have be aware that AVI headers don't store this value. Thus, the only solution is rescaling.

The output size is specified with the -x, and -y options. Furthermore, there are 3 rescaling filters in MEncoder, 0 : fast 1 : bilinear, 2 : bilinear, bicubic (best quality). They can be specified with the -sws option. If not specified, MEncoder will use 0 : fast bilinear.

Rescaling is very simple :
    mencoder sample-svcd.mpg -divx4opts br=1300 -x 640 -y 480 -sws 2 -o output.avi

Stream copying

MEncoder can handle input streams in two ways : encode or copy them. This section is about copying.

Syntax

  mencoder [options] [input file] [options] ...

Available options

NOTE : for all available options, read the manpage !

   -o filename    specify output filename
   -x width in pixels    rescale output video to given pixels width
   -y height in pixels    rescale output video to given pixels height
   -sws 0-2    type of scaling method
  0 - fast bilinear
  1 - bilinear
  2 - bicubic (best quality)
   -ovc codecname    Encode with the given codec (codec names are from codecs.conf). Examples:
  help - get list of available codecs
  copy - no encoding, just copy the stream (only from AVI/ASF now)
  divx4 - encode to DivX4
   -oac codecname    Encode with the given codec (codec names are from codecs.conf). Examples:
  help - get list of available codecs
  copy - no encoding, just copy the stream (only from AVI/ASF now)
  pcm - encode to uncompressed PCM
  mp3lame - encode to MP3 (using Lame)
   -divx4opts    If encoding to DivX4, you can specify its parameters here, like:
  -divx4opts br=1800:deinterlace:key=250
Common options: (for full list, check the manpage!)
  help - get help
  br=XXX - specify bitrate in kbit <4-16000> or bit <16001-24000000>
  q=XXXX - quality (1-fastest, 5-best - default 5)
   -lameopts    If encoding to MP3 with libmp3lame, you can specify its parameters here, like:
  -lameopts q=3
  -lameopts br=192:cbr
Common options: (for full list, check the manpage!)
  help - get help
  cbr - select CBR MP3 (default is VBR)
  br=XXX - specify bitrate in kbit <0-1024> (this is for CBR only!)
  q=XXXX - quality (0-highest, 9-fastest - default 0) (this is for VBR only!)

Examples

Using MEncoder is the easiest thing on Earth. See the following :

Encoding from DVD, title 2 :
    mencoder -dvd 2 -o title2.avi

Encoding from DVD, title 2, with rescaling :
    mencoder -dvd 2 -x 640 -y 480 -sws 2 -o title2.avi

Encoding from HTTP :
    mencoder http://mplayer.hq/example.avi -o example.avi

Encoding from a pipe :
    rar p test-SVCD.rar | mencoder -divx4opts br=800 -ofps 24 -pass 1 -- -

Encoding multiple *.vob files :
    cat *.vob | mencoder <options> -

Encoding from tuner (for tuner options see the TV input section !) :
    mencoder -tv on:driver=v4l:width=640:height=480 <options>

For all available options, check the MEncoder man page !