| | 16 | |
| | 17 | Note: this guide uses AVI container files for the examples, as the most common usage of Xvid video is currently for older hardware devices that don't support h.264 or the MP4 container. If you are using MPEG4 for some other reason, you should probably use the more modern MP4 container, or possible MKV (matroska). For audio the MP3 codec is used; again, this is because certain old hardware devices support MP3 audio only, and you should consider using a more modern codec, like AAC. Also, consider using h.264 video as described [[https://ffmpeg.org/trac/ffmpeg/wiki/x264EncodingGuide|in this guide]], as it will give you better quality video for a given file size, and is very well supported in recent hardware and software. |
| | 18 | |
| | 19 | == Variable Bit Rate with qscale == |
| | 20 | |
| | 21 | You can select a general quality level with -qscale n, where n is a number from 1-31, with 1 being highest quality/largest filesize and 31 being the lowest quality/smallest filesize. This is a variable bit rate mode, roughly analogous to [[https://ffmpeg.org/trac/ffmpeg/wiki/x264EncodingGuide#crf|using a -crf with x264]], except that the range is more linear. Most of the time, this should be the preferred method. |
| | 22 | |
| | 23 | For example: |
| | 24 | {{{ |
| | 25 | ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -qscale 3 -c:a libmp3lame -q:a 4 output.avi |
| | 26 | }}} |
| | 27 | |
| | 28 | == Constant Bit Rate == |
| | 29 | |
| | 30 | You can target a bitrate with -b:v. This is best used with two-pass encoding. Adapting an example from the x264 encoding guide: your video is 10 minutes (600 seconds) long and an output of 50 MB is desired. Since bitrate = file size / duration: |
| | 31 | |
| | 32 | {{{ |
| | 33 | (50 MB * 8192 [converts MB to kilobits]) / 600 seconds = ~683 kilobits/s total bitrate |
| | 34 | 683k - 128k (desired audio bitrate) = 555k video bitrate |
| | 35 | }}} |
| | 36 | |
| | 37 | === Two-pass example === |
| | 38 | |
| | 39 | {{{ |
| | 40 | ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 1 -an -f avi /dev/null |
| | 41 | ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 2 -c:a libmp3lame -b:a 128k output.avi |
| | 42 | }}} |
| | 43 | |
| | 44 | Note: Windows users should use NUL instead of /dev/null. |