From 46fdebd503a89359671bee9cf52d04c053ff6a25 Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Fri, 5 Jan 2024 19:34:16 -0500 Subject: [PATCH] Another minor fix for breadmixer, specifically the final ffmpeg call --- bin/breadmixer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/breadmixer.py b/bin/breadmixer.py index d07af53..925ddc1 100644 --- a/bin/breadmixer.py +++ b/bin/breadmixer.py @@ -161,7 +161,7 @@ final_command_list.append("-filter_complex") filter_string = "\"" for i in range(len(list_of_final_merges)): - filter_string = filter_string + "[a{inputid}]".format(inputid=i) + filter_string = filter_string + "[{inputid}]".format(inputid=i) filter_string = filter_string + "amix=inputs={input_count}:normalize=0[a];[a]volume=3[boosted]\"".format(input_count=len(list_of_final_merges))