Changes between Version 26 and Version 27 of Encode/H.265


Ignore:
Timestamp:
Apr 18, 2024, 2:27:05 AM (2 years ago)
Author:
Roger Pack
Comment:

mention it might actually get bigger

Legend:

Unmodified
Added
Removed
Modified
  • Encode/H.265

    v26 v27  
    4040* Choose a CRF. CRF affects the quality. The default is 28, and it should visually correspond to libx264 video at CRF 23, but result in about half the file size. CRF works just like in x264, so choose the highest value that provides an acceptable quality.
    4141
    42 * Choose a preset. The default is `medium`. The preset determines compression efficiency and therefore affects encoding speed. Valid presets are `ultrafast`, `superfast`, `veryfast`, `faster`, `fast`, `medium`, `slow`, `slower`, `veryslow`, and `placebo`. Use the slowest preset you have patience for. Ignore `placebo` as it provides insignificant returns for a significant increase in encoding time.
     42* Choose a preset. The default is `medium`. The preset determines compression options and efficiency and therefore affects encoding speed and size. Valid presets are `ultrafast`, `superfast`, `veryfast`, `faster`, `fast`, `medium`, `slow`, `slower`, `veryslow`, and `placebo`. Use the slowest preset you have patience for, with a crf that is acceptable, given that preset.  Ignore `placebo` as it provides insignificant returns for a significant increase in encoding time.  Note that CRF values are different based on which preset you select, a "slower" preset generates more compression/bit, but may increase filesize.  If you compare "ultrafast" with "veryslow" at the same CRF value, "veryslow" may generate a larger file, with overall better compression.  So for instance if -preset ultrafast with -crf 15 generates a file with comparable size to "veryslow" -crf 20, the veryslow preset file will have better quality for the same file size.  You can also specify a bitrate for a preset (see below), instead of crf, for controlling file size with a certain compression level.
    4343
    4444* Choose a tune (optional). By default, this is disabled, and it is generally not required to set a tune option. x265 supports the following `-tune` options: `psnr`, `ssim`, `grain`, `zerolatency`, `fastdecode`. They are explained in the [[H.264#crf|H.264 guide]].