Changes between Version 10 and Version 11 of Encode/AV1
- Timestamp:
- Oct 27, 2018, 3:41:36 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Encode/AV1
v10 v11 27 27 = Constant Quality = 28 28 29 libaom-av1 has a constant quality (CQ) mode (like CRF in x264 and x265) which will ensure that every frame gets the number of bits it deserves to achieve a certain (perceptual) quality level, rather than encoding each frame to meet a bit rate target. This results in better overall quality. 29 libaom-av1 has a constant quality (CQ) mode (like CRF in x264 and x265) which will ensure that every frame gets the number of bits it deserves to achieve a certain (perceptual) quality level, rather than encoding each frame to meet a bit rate target. This results in better overall quality. If you do not need to achieve a fixed target file size, this should be your method of choice. 30 30 31 If you do not need to achieve a fixed target file size, this should be your method of choice. 31 To trigger this mode, you must use a combination of -crf and -b:v 0. -b:v '''MUST''' be 0. 32 32 33 33 {{{ 34 ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 - strict experimental av1_test.mkv34 ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 -b:v 0 -strict experimental av1_test.mkv 35 35 }}} 36 36
