From 7dcee9b1ae35293235746b74771294b4674894a8 Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Sat, 21 May 2022 20:06:36 +0100 Subject: [PATCH] Update qsv to vaapi (will handle input at later date) --- Community/Tdarr_Plugin_drdd_standardise_all_in_one.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Community/Tdarr_Plugin_drdd_standardise_all_in_one.js b/Community/Tdarr_Plugin_drdd_standardise_all_in_one.js index 00ba404..d3e84b3 100644 --- a/Community/Tdarr_Plugin_drdd_standardise_all_in_one.js +++ b/Community/Tdarr_Plugin_drdd_standardise_all_in_one.js @@ -5,14 +5,14 @@ const details = () => { return { id: "Tdarr_Plugin_drdd_standardise_all_in_one", Stage: "Pre-processing", - Name: "DrDD H265 MKV AC3 audio subtitles [QSV & NVENC]", + Name: "DrDD H265 MKV AC3 audio subtitles [VAAPI & NVENC]", Stage: "Pre-processing", Type: "Video", Operation: "Transcode", Description: "In a single pass ensures all files are in MKV containers and where possible encoded in h265 (settings dependant on file bitrate), converts all multi channel audio to AC3, removes audio commentary and removes subtitles that are not in the configured language or marked as commentary. This plugin is opinionated based on how I like my library to be configured and based on the work done by Migz with his plugins (Thanks!).", Version: "1.0", - Tags: "pre-processing,ffmpeg,qsv h265, nvenc h265", + Tags: "pre-processing,ffmpeg,vaapi,h265, nvenc h265", Inputs: [ { name: "nvenc", @@ -347,7 +347,7 @@ function buildVideoConfiguration(inputs, file, logger) { configuration.RemoveOutputSetting("-c:v copy"); configuration.AddOutputSetting(`-c:v hevc_vaapi ${bitrateSettings}`); - logger.AddError("Transcoding to HEVC using QSV"); + logger.AddError("Transcoding to HEVC using VAAPI"); } /**