From 92e2c64db227a250724f7a6d5fc35e25b3a9954d Mon Sep 17 00:00:00 2001 From: Levon Gevorgyan Date: Thu, 26 Dec 2024 15:54:57 -0600 Subject: [PATCH] fix filter --- scripts/recc_encode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/recc_encode.sh b/scripts/recc_encode.sh index 3df5071..d187e8c 100755 --- a/scripts/recc_encode.sh +++ b/scripts/recc_encode.sh @@ -58,7 +58,7 @@ get_bitrate_audio() { if [[ "$CODEC_NAME" == 'opus' ]]; then BITRATE_CMD+="-c:a:$i copy " else - BITRATE_CMD+="-filter:a:$i 'aformat=channel_layouts=7.1|5.1|stereo|mono' -c:a:$i libopus -b:a:$i ${BITRATE}k " + BITRATE_CMD+="-filter:a:$i aformat=channel_layouts=7.1|5.1|stereo|mono -c:a:$i libopus -b:a:$i ${BITRATE}k " fi done echo "$BITRATE_CMD"