Tags:"ffmpeg,h265",//Provide tags to categorise your plugin in the plugin browser.Tag options: h265,hevc,h264,nvenc h265,nvenc h264,video only,audio only,subtitle only,handbrake,ffmpeg,radarr,sonarr,pre-processing,post-processing,configurable
id:'Tdarr_Plugin_aaaa_Pre_Proc_Example',
Stage:'Pre-processing',// Preprocessing or Post-processing. Determines when the plugin will be executed.
Name:'No title meta data ',
Type:'Video',
Operation:'Transcode',
Description:'This plugin removes metadata (if a title exists). The output container is the same as the original. \n\n',
Tags:'ffmpeg,h265',// Provide tags to categorise your plugin in the plugin browser.Tag options: h265,hevc,h264,nvenc h265,nvenc h264,video only,audio only,subtitle only,handbrake,ffmpeg,radarr,sonarr,pre-processing,post-processing,configurable
Inputs:[
//(Optional) Inputs you'd like the user to enter to allow your plugin to be easily configurable from the UI
//(Optional) Inputs you'd like the user to enter to allow your plugin to be easily configurable from the UI
{
name:"language",
name:'language',
tooltip:`Enter one language tag here for the language of the subtitles you'd like to keep.
\\nExample:\\n
@ -25,10 +30,10 @@ module.exports.details = function details() {
\\nExample:\\n
de`, //Each line following `Example:` will be clearly formatted. \\n used for line breaks
de`, //Each line following `Example:` will be clearly formatted. \\n used for line breaks
},
{
name:"channels",
name:'channels',
tooltip:`Desired audio channel number.
\\nExample:\\n
@ -39,67 +44,69 @@ module.exports.details = function details() {
// List any npm dependencies which the plugin needs, they will be auto installed when the plugin runs:
module.exports.dependencies=[
'import-fresh',
];
module.exports.details=functiondetails(){
return{
id:"Tdarr_Plugin_zzzz_Post_Proc_Example",
Stage:"Post-processing",//Preprocessing or Post-processing. Determines when the plugin will be executed. This plugin does some stuff after all plugins have been executed
Name:"Post proc ",
Type:"Video",
Operation:"",
Description:`This plugin does some stuff after all plugins have been executed. \n\n`,
Tags:"ffmpeg,h265",//Provide tags to categorise your plugin in the plugin browser.Tag options: h265,hevc,h264,nvenc h265,nvenc h264,video only,audio only,subtitle only,handbrake,ffmpeg,radarr,sonarr,pre-processing,post-processing,configurable
id:'Tdarr_Plugin_zzzz_Post_Proc_Example',
Stage:'Post-processing',// Preprocessing or Post-processing. Determines when the plugin will be executed. This plugin does some stuff after all plugins have been executed
Name:'Post proc ',
Type:'Video',
Operation:'',
Description:'This plugin does some stuff after all plugins have been executed. \n\n',
Tags:'ffmpeg,h265',// Provide tags to categorise your plugin in the plugin browser.Tag options: h265,hevc,h264,nvenc h265,nvenc h264,video only,audio only,subtitle only,handbrake,ffmpeg,radarr,sonarr,pre-processing,post-processing,configurable
Inputs:[
//(Optional) Inputs you'd like the user to enter to allow your plugin to be easily configurable from the UI
//(Optional) Inputs you'd like the user to enter to allow your plugin to be easily configurable from the UI
{
name:"language",
name:'language',
tooltip:`Enter one language tag here for the language of the subtitles you'd like to keep.
\\nExample:\\n
@ -23,10 +28,10 @@ module.exports.details = function details() {
fr
\\nExample:\\n
de`, //Each line following `Example:` will be clearly formatted. \\n used for line breaks
de`, //Each line following `Example:` will be clearly formatted. \\n used for line breaks
},
{
name:"channels",
name:'channels',
tooltip:`Desired audio channel number.
\\nExample:\\n
@ -37,12 +42,15 @@ module.exports.details = function details() {