trixoniisama 9230888820 Add auto-boost algorithm 2.5
Built from improvements over 2.0 by Kosaka, R1chterScale and Yiss <3
2024-11-16 17:13:38 +01:00
2024-07-02 19:21:24 +02:00
2024-11-16 17:13:38 +01:00
2024-07-02 17:27:55 +00:00
2024-07-03 11:58:44 +02:00

Auto-boost Algorithm

Version 1.0: brightness-based

Gets the average brightness of a scene and lowers CQ/CRF/Q the darker the scene is, in a zones.txt file to feed Av1an. The requirements are Vapoursynth, vstools and LSMASHSource.

Usage:

python auto-boost_1.0.py "{animu.mkv}" "{scenes.json}" {base CQ/CRF/Q} "{encoder: aom/svt-av1/rav1e (optional)}"

Example:

python auto-boost_1.0.py "path/to/nice_boat.mkv" "path/to/scenes.json" 30

Advantages:

  • Fast
  • No bs
  • Solves one long-lasting issue of AV1 encoders: low bitrate allocation in dark scenes

Known limitations:

  • Not every dark scene is made equal, brightness is not a great enough metric to determine whether CRF should be decreased or not
  • CRF is boosted to the max during credits
  • Script now entirely irrelevant with SVT-AV1-PSY's new frame-luma-bias feature

Inspiration was drawn from the original Av1an (python) boosting code

Version 2.0: SSIMULACRA2-based

Does a fast encode of the provided file, calculates SSIMULACRA2 scores of each chunks and adjusts CRF per-scene to be closer to the average total score, in a zones.txt file to feed Av1an. The requirements are Vapoursynth, vstools, LSMASHSource, fmtconv, Av1an and vapoursynth-ssimulacra2.

Usage:

python auto-boost_2.0.py "{animu.mkv}" {base CQ/CRF/Q}

Example:

python auto-boost_2.0.py "path/to/nice_boat.mkv" 30

Advantages:

  • Lower quality deviation of individual scenes in regards to the entire stream
  • Better allocates bitrate in more complex scenes and compensates by giving less bitrate to scenes presenting some headroom for further compression

Known limitations:

  • Slow process
  • No bitrate cap in place so the size of complex scenes can go out of hand
  • The SSIMULACRA2 metric is not ideal, plus the score alone is not representative enough of if a CRF adjustement is relevant in the context of that scene (AI will save)

Borrowed some code from Sav1or's SSIMULACRA2 script

Version 3.0: SSIMULACRA2-based + per-scene grain synthesis strength determination

...and a few other improvements.

Soon™️

Description
No description provided
Readme MIT 121 KiB
Languages
Python 100%