From afb22b5aef44a1b83eee5a94c60cf34226f3fcbd Mon Sep 17 00:00:00 2001 From: MrMeeb Date: Sun, 21 Apr 2024 16:00:15 +0000 Subject: [PATCH] Another ffmpeg command tweak --- Tdarr_Plugin_MM1_MrMeeb_Full_Stack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tdarr_Plugin_MM1_MrMeeb_Full_Stack.js b/Tdarr_Plugin_MM1_MrMeeb_Full_Stack.js index f745d08..d9b3165 100644 --- a/Tdarr_Plugin_MM1_MrMeeb_Full_Stack.js +++ b/Tdarr_Plugin_MM1_MrMeeb_Full_Stack.js @@ -250,7 +250,7 @@ const response = { response.infoLog += 'TrueHD track exists, but no AC3 compatibility track is present. Creating one.\n' - ffmpegAudioFirstTrack = `-map 0:a:${trueHD} -c:a:0 ac3 -b:a:0 640k -ac:a:0 ${file.ffProbeData.streams[trueHDi].channels} -metadata:s:a:0 "title=AC3 - 5.1 - MM" -disposition:a:0 default` + ffmpegAudioFirstTrack = ` -map -0:a -map 0:a:${trueHD} -c:a:0 ac3 -b:a:0 640k -ac:a:0 ${file.ffProbeData.streams[trueHDi].channels} -metadata:s:a:0 "title=AC3 - 5.1 - MM" -disposition:a:0 default` }