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;