From d194a5326342d320a10fdad6b727df6215b77cab Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Sat, 8 Aug 2020 01:49:54 +0200 Subject: [PATCH] Add -max_muxing_queue_size 9999 Prevent 'too many unbuffered packets' --- ...Plugin_a9hd_FFMPEG_Transcode_Specific_Audio_Stream_Codecs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Community/Tdarr_Plugin_a9hd_FFMPEG_Transcode_Specific_Audio_Stream_Codecs.js b/Community/Tdarr_Plugin_a9hd_FFMPEG_Transcode_Specific_Audio_Stream_Codecs.js index d2e60a0..8586840 100644 --- a/Community/Tdarr_Plugin_a9hd_FFMPEG_Transcode_Specific_Audio_Stream_Codecs.js +++ b/Community/Tdarr_Plugin_a9hd_FFMPEG_Transcode_Specific_Audio_Stream_Codecs.js @@ -87,7 +87,7 @@ module.exports.plugin = function plugin(file, librarySettings, inputs) { } } - ffmpegCommand += ` -map 0:s? -map 0:d? `; + ffmpegCommand += ` -map 0:s? -map 0:d? -max_muxing_queue_size 9999`; if (hasStreamsToTranscode == false) { response.processFile = false;