From 330dc5b2ea00b561bc3a873704d19bc5f32b8514 Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Sun, 7 Feb 2021 15:19:19 +0100 Subject: [PATCH] Add -max_muxing_queue_size 999 --- Community/Tdarr_Plugin_075a_FFMPEG_HEVC_Generic.js | 2 +- .../Tdarr_Plugin_075b_FFMPEG_HEVC_Generic_Video_Audio_Only.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Community/Tdarr_Plugin_075a_FFMPEG_HEVC_Generic.js b/Community/Tdarr_Plugin_075a_FFMPEG_HEVC_Generic.js index 382847f..28d7bc3 100644 --- a/Community/Tdarr_Plugin_075a_FFMPEG_HEVC_Generic.js +++ b/Community/Tdarr_Plugin_075a_FFMPEG_HEVC_Generic.js @@ -42,7 +42,7 @@ function plugin(file) { } response.processFile = true; - response.preset = `,-map 0:v -map 0:a -map 0:s? -map 0:d? -c copy -c:v:0 libx265 `; + response.preset = `,-map 0:v -map 0:a -map 0:s? -map 0:d? -c copy -c:v:0 libx265 -max_muxing_queue_size 9999`; response.container = ".mkv"; response.handBrakeMode = false; response.FFmpegMode = true; diff --git a/Community/Tdarr_Plugin_075b_FFMPEG_HEVC_Generic_Video_Audio_Only.js b/Community/Tdarr_Plugin_075b_FFMPEG_HEVC_Generic_Video_Audio_Only.js index 6a5a41b..4ef8a3c 100644 --- a/Community/Tdarr_Plugin_075b_FFMPEG_HEVC_Generic_Video_Audio_Only.js +++ b/Community/Tdarr_Plugin_075b_FFMPEG_HEVC_Generic_Video_Audio_Only.js @@ -42,7 +42,7 @@ function plugin(file) { } response.processFile = true; - response.preset = `,-map 0:v -map 0:a -c copy -c:v:0 libx265`; + response.preset = `,-map 0:v -map 0:a -c copy -c:v:0 libx265 -max_muxing_queue_size 9999`; response.container = ".mkv"; response.handBrakeMode = false; response.FFmpegMode = true;