From 96dcdd3d55d404dba5cca654a9a021531c5e92ea Mon Sep 17 00:00:00 2001 From: Jake Walker Date: Fri, 10 Jan 2025 13:54:49 +0000 Subject: [PATCH] adjust normalization settings --- process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.py b/process.py index 5904ee0..dd5cab7 100644 --- a/process.py +++ b/process.py @@ -62,7 +62,7 @@ class AudioProcessor: return ffmpeg_normalize = FFmpegNormalize( - "ebu", audio_codec="aac", audio_bitrate="192k" + "peak", audio_codec="aac", audio_bitrate="192k", target_level=-0.1 ) ffmpeg_normalize.add_media_file(str(input_filename), str(output_filename)) ffmpeg_normalize.run_normalization()