From 0aeb3b770f9ad811e47e90585ee7add8f52c77be Mon Sep 17 00:00:00 2001 From: fabian Date: Wed, 31 May 2023 10:39:33 +0200 Subject: [PATCH] use alternative aac encoder --- scripts/reencode_m4a.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/reencode_m4a.sh b/scripts/reencode_m4a.sh index 9a160ba..38e1bcc 100755 --- a/scripts/reencode_m4a.sh +++ b/scripts/reencode_m4a.sh @@ -6,9 +6,9 @@ map= vbr= while [[ $# > 0 ]]; do case $1 in - -map) map='-map 0:0'; shift;; - -vbr) vbr='libfdk_aac -profile:a aac_he -b:a 64k'; shift;; - * ) break ;; # Anything else stops command line processing. + -map) map='-map 0:0'; shift;; + -vbr) vbr='aac_at -profile:a aac_he -b:a 64k'; shift;; + * ) break ;; # Anything else stops command line processing. esac done