mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-18 19:56:24 -07:00
Plugin update
This commit is contained in:
parent
5f68989571
commit
90e2b3923a
85 changed files with 2093 additions and 1007 deletions
|
|
@ -1,20 +1,24 @@
|
|||
const loadDefaultValues = require('../methods/loadDefaultValues');
|
||||
/* eslint-disable */
|
||||
function details() {
|
||||
const details = () => {
|
||||
return {
|
||||
id: "Tdarr_Plugin_s710_nick_h265_nvenc_4K",
|
||||
Stage: "Pre-processing",
|
||||
Name: "Nick H265 NVENC 4K",
|
||||
Type: "Video",
|
||||
Operation: "Transcode",
|
||||
Description: `[Contains built-in filter] This plugin transcodes all 4K videos to h265 using nvenc (if not in h265 already). For 4K and files in other resolutions: If not in mkv the file is remuxed into mkv. If the English language track is not in AC3,EAC3 or DTS then an AC3 track is added.\n\n
|
||||
`,
|
||||
Version: "1.00",
|
||||
Link:
|
||||
"https://github.com/HaveAGitGat/Tdarr_Plugins/blob/master/Community/Tdarr_Plugin_s710_nick_h265_nvenc_4K.js",
|
||||
Tags: "pre-processing,ffmpeg,nvenc h265",
|
||||
Inputs:[],
|
||||
};
|
||||
}
|
||||
|
||||
function plugin(file) {
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
const plugin = (file, librarySettings, inputs, otherArguments) => {
|
||||
// eslint-disable-next-line no-unused-vars,no-param-reassign
|
||||
inputs = loadDefaultValues(inputs, details);
|
||||
//Must return this object
|
||||
|
||||
var response = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue