From 2d15e9f7dd77cf477dd2b60a6f2f6bb599dbf1fc Mon Sep 17 00:00:00 2001 From: caiusseverus <7763268+caiusseverus@users.noreply.github.com> Date: Tue, 23 Feb 2021 00:25:52 +0000 Subject: [PATCH] Bugfix: missing hyphen Missing hyphen in preset for mjpeg decoding line 275. --- Community/Tdarr_Plugin_MC93_Migz1FFMPEG.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Community/Tdarr_Plugin_MC93_Migz1FFMPEG.js b/Community/Tdarr_Plugin_MC93_Migz1FFMPEG.js index 753ef59..9a93c33 100644 --- a/Community/Tdarr_Plugin_MC93_Migz1FFMPEG.js +++ b/Community/Tdarr_Plugin_MC93_Migz1FFMPEG.js @@ -272,7 +272,7 @@ function plugin(file, librarySettings, inputs) { response.preset = '-c:v h264_cuvid'; } } else if (file.video_codec_name === 'mjpeg') { - response.preset = 'c:v mjpeg_cuvid'; + response.preset = '-c:v mjpeg_cuvid'; } else if (file.video_codec_name === 'mpeg1') { response.preset = '-c:v mpeg1_cuvid'; } else if (file.video_codec_name === 'mpeg2') {