mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-19 03:56:25 -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_s7x9_winsome_h265_nvenc",
|
||||
Stage: "Pre-processing",
|
||||
Name: "Winsome H265 NVENC",
|
||||
Type: "Video",
|
||||
Operation: "Transcode",
|
||||
Description: `[Contains built-in filter] This plugin transcodes all videos to h265 using nvenc (if not in h265 already) and remuxes if not in 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_s7x9_winsome_h265_nvenc.js",
|
||||
Tags: "pre-processing,handbrake,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