From afe538fcbdf3694b24510f6662abcf3c500aa5ad Mon Sep 17 00:00:00 2001 From: Boosh1 <45874141+Boosh1@users.noreply.github.com> Date: Tue, 16 Jan 2024 11:59:17 +0000 Subject: [PATCH] Restored some cases for HW decode but commented out --- Community/Tdarr_Plugin_bsh1_Boosh_FFMPEG_QSV_HEVC.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Community/Tdarr_Plugin_bsh1_Boosh_FFMPEG_QSV_HEVC.js b/Community/Tdarr_Plugin_bsh1_Boosh_FFMPEG_QSV_HEVC.js index bf0fbc0..d2e594a 100644 --- a/Community/Tdarr_Plugin_bsh1_Boosh_FFMPEG_QSV_HEVC.js +++ b/Community/Tdarr_Plugin_bsh1_Boosh_FFMPEG_QSV_HEVC.js @@ -720,9 +720,15 @@ const plugin = (file, librarySettings, inputs, otherArguments) => { case 'h264': response.preset += '-c:v h264_qsv'; break; + case 'vc1': // VC1 no longer supported on latest intel HW + // response.preset += '-c:v vc1_qsv'; + break; case 'mjpeg': response.preset += '-c:v mjpeg_qsv'; break; + case 'vp8': // VP8 no longer supported on latest intel HW + // response.preset += '-c:v vp8_qsv'; + break; case 'hevc': response.preset += '-c:v hevc_qsv'; break;