From 64afcad375c53a354a0b086cbd0361371c7ca6a5 Mon Sep 17 00:00:00 2001 From: archdevlab <146228772+archdevlab@users.noreply.github.com> Date: Mon, 25 Nov 2024 03:19:04 +0000 Subject: [PATCH] Update Tdarr_Plugin_MC93_Migz5ConvertAudio.js Consider adding Stereo before 2.0 for better description --- Community/Tdarr_Plugin_MC93_Migz5ConvertAudio.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Community/Tdarr_Plugin_MC93_Migz5ConvertAudio.js b/Community/Tdarr_Plugin_MC93_Migz5ConvertAudio.js index 4e651cf7a..e4b2fb744 100644 --- a/Community/Tdarr_Plugin_MC93_Migz5ConvertAudio.js +++ b/Community/Tdarr_Plugin_MC93_Migz5ConvertAudio.js @@ -149,7 +149,7 @@ const plugin = (file, librarySettings, inputs, otherArguments) => { && (inputs.downmix_single_track === false || (inputs.downmix_single_track === true && is2channelAdded === false)) ) { - ffmpegCommandInsert += `-map 0:${i} -c:a:${audioIdx} aac -ac 2 -metadata:s:a:${audioIdx} title="2.0" `; + ffmpegCommandInsert += `-map 0:${i} -c:a:${audioIdx} aac -ac 2 -metadata:s:a:${audioIdx} title="Stereo 2.0" `; response.infoLog += '☒Audio track is 6 channel, no 2 channel exists. Creating 2 channel from 6 channel. \n'; convert = true; is2channelAdded = true;