From 6cfdb40e7fb121563075d283619192f29c9de3e6 Mon Sep 17 00:00:00 2001 From: pat-e Date: Thu, 28 Aug 2025 11:34:21 +0200 Subject: [PATCH] New changes to code --- anime_audio_encoder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anime_audio_encoder.py b/anime_audio_encoder.py index e676c80..14430dc 100644 --- a/anime_audio_encoder.py +++ b/anime_audio_encoder.py @@ -21,7 +21,7 @@ REMUX_CODECS = {"aac", "opus"} # Using a set for efficient lookups SVT_AV1_PARAMS = { "speed": "slower", # "slower", "slow", "medium", "fast", "faster" - "quality": "medium", # "lowest", "low, # "higher", "high", "medium", "low", "lower" + "quality": "medium", # "higher", "high", "medium", "low", "lower" "film-grain": 6, "color-primaries": 1, "transfer-characteristics": 1, @@ -30,7 +30,7 @@ SVT_AV1_PARAMS = { "keyint": 0, # Keyframe interval, 0 disables automatic keyframes placement at a constant interval "auto-tiling": 1, # Auto tiling ON "tune": 1, # 0 = VQ, 1 = PSNR, 2 = SSIM - "progress": 2, # Detailed progress output + "progress": 3, # Detailed progress output } def check_tools():