Changes between Version 2 and Version 3 of vpxEncodingGuide
- Timestamp:
- 02/26/2013 04:56:33 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
vpxEncodingGuide
v2 v3 3 3 To install FFmpeg with support for libvpx, look at the [https://ffmpeg.org/trac/ffmpeg/wiki/CompilationGuide Compilation Guides] and compile FFmpeg with the {{{--enable-libvpx}}} option. 4 4 5 Note that in the below examples, the libvorbis audio encoder is used. Make sure your FFmpeg version also includes this (check with {{{ffmpeg -codecs}}}), as the native Vorbis encoder from FFmpeg itself should not be used.5 Note that in the below examples, the libvorbis audio encoder is used. Make sure your FFmpeg version also includes libvorbis (check with {{{ffmpeg -codecs}}}), as the native Vorbis encoder from FFmpeg does not provide comparable quality. 6 6 7 7 == Constant Bitrate == … … 15 15 }}} 16 16 17 Here, you can choose different values for the bitrate other than `1M`, e.g. `500K`, but you must set all options (i.e., `minrate`, `maxrate` and `b:v`) to the same value.17 Here, you can choose different values for the bitrate other than `1M`, e.g. `500K`, but you must set all options (i.e., `minrate`, `maxrate` and `b:v`) to the same value. 18 18 19 19 == Variable Bitrate == … … 49 49 50 50 You can also artificially force libvpx to use a certain quality if you specify `-qmin` and `-qmax` without any bit rate or CRF value, but this is not an ideal solution. 51 52


