Tiered NVENC plugin based on choosing CQ:V value per resolution. (cq:v is nvenc equivalent of crf) Based originally on iiDrakeii's "Tiered FFMPEG NVENC settings depending on resolution" plugin.make-only-subtitle-default
parent
8a558bd3d7
commit
07c41ce477
@ -0,0 +1,195 @@
|
|||||||
|
function details() {
|
||||||
|
return {
|
||||||
|
id: "Tdarr_Plugin_vodk_Tiered_NVENC_CQV_BASED_CONFIGURABLE",
|
||||||
|
Stage: "Pre-processing",
|
||||||
|
Name: "Tiered FFMPEG+NVENC CQ:V BASED CONFIGURABLE",
|
||||||
|
Type: "Video",
|
||||||
|
Operation: "Transcode",
|
||||||
|
Description: `[Contains built-in filter] This plugin uses different CQ:V values (similar to crf but for nvenc) depending on resolution, the CQ:V value is configurable per resolution. ALL OPTIONS MUST BE CONFIGURED! If files are not in hevc they will be transcoded. The output container is mkv. \n\n`,
|
||||||
|
Version: "1.00",
|
||||||
|
Link:
|
||||||
|
"https://github.com/HaveAGitGat/Tdarr_Plugins/blob/master/Community/Tdarr_Plugin_vodk_Tiered_NVENC_CQV_BASED_CONFIGURABLE.js",
|
||||||
|
Tags: "pre-processing,ffmpeg,video only,nvenc h265,configurable",
|
||||||
|
|
||||||
|
Inputs: [
|
||||||
|
{
|
||||||
|
name: "sdCQV",
|
||||||
|
tooltip: `Enter the CQ:V value you want for 480p and 576p content.
|
||||||
|
\\nExample:\\n
|
||||||
|
|
||||||
|
18`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "hdCQV",
|
||||||
|
tooltip: `Enter the CQ:V value you want for 720p content.
|
||||||
|
|
||||||
|
\\nExample:\\n
|
||||||
|
17`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "fullhdCQV",
|
||||||
|
tooltip: `Enter the CQ:V value you want for 1080p content.
|
||||||
|
|
||||||
|
\\nExample:\\n
|
||||||
|
18`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "uhdCQV",
|
||||||
|
tooltip: `Enter the CQ:V value you want for 4K/UHD/2160p content.
|
||||||
|
|
||||||
|
\\nExample:\\n
|
||||||
|
22`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "bframe",
|
||||||
|
tooltip: `Specify amount of b-frames to use, 0-5. Use 0 to disable. (GPU must support this, turing and newer supports this, except for the 1650)
|
||||||
|
|
||||||
|
\\nExample:\\n
|
||||||
|
3`,
|
||||||
|
},
|
||||||
|
|
||||||
|
],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports.plugin = function plugin(file, librarySettings, inputs) {
|
||||||
|
var transcode = 0; //if this var changes to 1 the file will be transcoded
|
||||||
|
var subcli = `-c:s copy`;
|
||||||
|
var maxmux = "";
|
||||||
|
var map = "-map 0";
|
||||||
|
var cqvinuse = "";
|
||||||
|
//default values that will be returned
|
||||||
|
var response = {
|
||||||
|
processFile: false,
|
||||||
|
preset: "",
|
||||||
|
container: ".mkv",
|
||||||
|
handBrakeMode: false,
|
||||||
|
FFmpegMode: false,
|
||||||
|
reQueueAfter: true,
|
||||||
|
infoLog: "",
|
||||||
|
maxmux: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
//check if the file is a video, if not the function will be stopped immediately
|
||||||
|
if (file.fileMedium !== "video") {
|
||||||
|
response.processFile = false;
|
||||||
|
response.infoLog += "☒File is not a video! \n";
|
||||||
|
return response;
|
||||||
|
} else {
|
||||||
|
// bitrateprobe = file.ffProbeData.streams[0].bit_rate;
|
||||||
|
response.infoLog += "☑File is a video! \n";
|
||||||
|
}
|
||||||
|
|
||||||
|
//check if the file is already hevc, it will not be transcoded if true and the function will be stopped immediately
|
||||||
|
if (file.ffProbeData.streams[0].codec_name == "hevc") {
|
||||||
|
response.processFile = false;
|
||||||
|
response.infoLog += "☑File is already in hevc! \n";
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
//codec will be checked so it can be transcoded correctly
|
||||||
|
if (file.video_codec_name == "h263") {
|
||||||
|
response.preset = `-c:v h263_cuvid`;
|
||||||
|
} else if (file.video_codec_name == "h264") {
|
||||||
|
if (file.ffProbeData.streams[0].profile != "High 10") {
|
||||||
|
//Remove HW Decoding for High 10 Profile
|
||||||
|
response.preset = `-c:v h264_cuvid`;
|
||||||
|
}
|
||||||
|
} else if (file.video_codec_name == "mjpeg") {
|
||||||
|
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") {
|
||||||
|
response.preset = `-c:v mpeg2_cuvid`;
|
||||||
|
}
|
||||||
|
// skipping this one because it's empty
|
||||||
|
// else if (file.video_codec_name == 'mpeg4') {
|
||||||
|
// response.preset = ``
|
||||||
|
// }
|
||||||
|
else if (file.video_codec_name == "vc1") {
|
||||||
|
response.preset = `-c:v vc1_cuvid`;
|
||||||
|
} else if (file.video_codec_name == "vp8") {
|
||||||
|
response.preset = `-c:v vp8_cuvid`;
|
||||||
|
} else if (file.video_codec_name == "vp9") {
|
||||||
|
response.preset = `-c:v vp9_cuvid`;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Set Subtitle Var before adding encode cli
|
||||||
|
for (var i = 0; i < file.ffProbeData.streams.length; i++) {
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
file.ffProbeData.streams[i].codec_name.toLowerCase() == "mov_text" &&
|
||||||
|
file.ffProbeData.streams[i].codec_type.toLowerCase() == "subtitle"
|
||||||
|
) {
|
||||||
|
subcli = `-c:s srt`;
|
||||||
|
}
|
||||||
|
} catch (err) {}
|
||||||
|
//mitigate TrueHD audio causing Too many packets error
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
file.ffProbeData.streams[i].codec_name.toLowerCase() == "truehd" ||
|
||||||
|
(file.ffProbeData.streams[i].codec_name.toLowerCase() == "dts" &&
|
||||||
|
file.ffProbeData.streams[i].profile.toLowerCase() == "dts-hd ma") ||
|
||||||
|
(file.ffProbeData.streams[i].codec_name.toLowerCase() == "aac" &&
|
||||||
|
file.ffProbeData.streams[i].sample_rate.toLowerCase() == "44100" &&
|
||||||
|
file.ffProbeData.streams[i].codec_type.toLowerCase() == "audio")
|
||||||
|
) {
|
||||||
|
maxmux = ` -max_muxing_queue_size 9999`;
|
||||||
|
}
|
||||||
|
} catch (err) {}
|
||||||
|
//mitigate errors due to embeded pictures
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
(file.ffProbeData.streams[i].codec_name.toLowerCase() == "png" ||
|
||||||
|
file.ffProbeData.streams[i].codec_name.toLowerCase() == "bmp" ||
|
||||||
|
file.ffProbeData.streams[i].codec_name.toLowerCase() == "mjpeg") &&
|
||||||
|
file.ffProbeData.streams[i].codec_type.toLowerCase() == "video"
|
||||||
|
) {
|
||||||
|
map = `-map 0:v:0 -map 0:a -map 0:s?`;
|
||||||
|
}
|
||||||
|
} catch (err) {}
|
||||||
|
}
|
||||||
|
//file will be encoded if the resolution is 480p or 576p
|
||||||
|
//codec will be checked so it can be transcoded correctly
|
||||||
|
if (file.video_resolution === "480p" || file.video_resolution === "576p") {
|
||||||
|
cqvinuse = `${inputs.sdCQV}`;
|
||||||
|
response.preset += `,${map} -dn -c:v hevc_nvenc -pix_fmt p010le -rc:v vbr_hq -qmin 0 -cq:v ${inputs.sdCQV} -preset slow -rc-lookahead 32 -bf ${inputs.bframe} -spatial_aq:v 1 -aq-strength:v 8 -a53cc 0 -c:a copy ${subcli}${maxmux}`;
|
||||||
|
transcode = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
//file will be encoded if the resolution is 720p
|
||||||
|
//codec will be checked so it can be transcoded correctly
|
||||||
|
if (file.video_resolution === "720p") {
|
||||||
|
cqvinuse = `${inputs.hdCQV}`;
|
||||||
|
response.preset += `,${map} -dn -c:v hevc_nvenc -pix_fmt p010le -rc:v vbr_hq -qmin 0 -cq:v ${inputs.hdCQV} -preset slow -rc-lookahead 32 -bf ${inputs.bframe} -spatial_aq:v 1 -aq-strength:v 8 -a53cc 0 -c:a copy ${subcli}${maxmux}`;
|
||||||
|
transcode = 1;
|
||||||
|
}
|
||||||
|
//file will be encoded if the resolution is 1080p
|
||||||
|
//codec will be checked so it can be transcoded correctly
|
||||||
|
if (file.video_resolution === "1080p") {
|
||||||
|
cqvinuse = `${inputs.fullhdCQV}`;
|
||||||
|
response.preset += `,${map} -dn -c:v hevc_nvenc -pix_fmt p010le -rc:v vbr_hq -qmin 0 -cq:v ${inputs.fullhdCQV} -preset slow -rc-lookahead 32 -bf ${inputs.bframe} -spatial_aq:v 1 -aq-strength:v 8 -a53cc 0 -c:a copy ${subcli}${maxmux}`;
|
||||||
|
transcode = 1;
|
||||||
|
}
|
||||||
|
//file will be encoded if the resolution is 4K
|
||||||
|
//codec will be checked so it can be transcoded correctly
|
||||||
|
if (file.video_resolution === "4KUHD") {
|
||||||
|
cqvinuse = `${inputs.uhdCQV}`;
|
||||||
|
response.preset += `,${map} -dn -c:v hevc_nvenc -pix_fmt p010le -rc:v vbr_hq -qmin 0 -cq:v ${inputs.uhdCQV} -preset slow -rc-lookahead 32 -bf ${inputs.bframe} -spatial_aq:v 1 -aq-strength:v 8 -a53cc 0 -c:a copy ${subcli}${maxmux}`;
|
||||||
|
transcode = 1;
|
||||||
|
}
|
||||||
|
//check if the file is eligible for transcoding
|
||||||
|
//if true the neccessary response values will be changed
|
||||||
|
if (transcode == 1) {
|
||||||
|
response.processFile = true;
|
||||||
|
response.FFmpegMode = true;
|
||||||
|
response.reQueueAfter = true;
|
||||||
|
response.infoLog += `☒File is ${file.video_resolution}!\n`;
|
||||||
|
response.infoLog += `☒File is not hevc!\n`;
|
||||||
|
response.infoLog += `☒CQ:V set to ${cqvinuse}!\n`;
|
||||||
|
response.infoLog += `File is being transcoded!\n`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
module.exports.details = details;
|
||||||
Loading…
Reference in new issue