mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 15:38:19 -07:00
Add labels
This commit is contained in:
parent
8c8ef277df
commit
ae0ff14bf0
39 changed files with 79 additions and 1 deletions
|
|
@ -19,6 +19,7 @@ const details = () :IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Input Arguments',
|
||||
name: 'inputArguments',
|
||||
type: 'string',
|
||||
defaultValue: '',
|
||||
|
|
@ -29,6 +30,7 @@ const details = () :IpluginDetails => ({
|
|||
},
|
||||
|
||||
{
|
||||
label: 'Output Arguments',
|
||||
name: 'outputArguments',
|
||||
type: 'string',
|
||||
defaultValue: '',
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ const details = (): IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Audio Encoder',
|
||||
name: 'audioEncoder',
|
||||
type: 'string',
|
||||
defaultValue: 'aac',
|
||||
|
|
@ -41,6 +42,7 @@ const details = (): IpluginDetails => ({
|
|||
'Enter the desired audio codec',
|
||||
},
|
||||
{
|
||||
label: 'Language',
|
||||
name: 'language',
|
||||
type: 'string',
|
||||
defaultValue: 'en',
|
||||
|
|
@ -52,6 +54,7 @@ const details = (): IpluginDetails => ({
|
|||
+ ' Case-insensitive. One tag only',
|
||||
},
|
||||
{
|
||||
label: 'Channels',
|
||||
name: 'channels',
|
||||
type: 'number',
|
||||
defaultValue: '2',
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Property To Check',
|
||||
name: 'propertyToCheck',
|
||||
type: 'string',
|
||||
defaultValue: 'codec_name',
|
||||
|
|
@ -37,6 +38,7 @@ const details = (): IpluginDetails => ({
|
|||
`,
|
||||
},
|
||||
{
|
||||
label: 'Values To Remove',
|
||||
name: 'valuesToRemove',
|
||||
type: 'string',
|
||||
defaultValue: 'aac',
|
||||
|
|
@ -52,6 +54,7 @@ const details = (): IpluginDetails => ({
|
|||
`,
|
||||
},
|
||||
{
|
||||
label: 'Condition',
|
||||
name: 'condition',
|
||||
type: 'string',
|
||||
defaultValue: 'includes',
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ const details = (): IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Process Order',
|
||||
name: 'processOrder',
|
||||
type: 'string',
|
||||
defaultValue: 'codecs,channels,languages,streamTypes',
|
||||
|
|
@ -38,6 +39,7 @@ The default order is suitable for most people.
|
|||
`,
|
||||
},
|
||||
{
|
||||
label: 'Languages',
|
||||
name: 'languages',
|
||||
type: 'string',
|
||||
defaultValue: '',
|
||||
|
|
@ -51,6 +53,7 @@ The default order is suitable for most people.
|
|||
`,
|
||||
},
|
||||
{
|
||||
label: 'Channels',
|
||||
name: 'channels',
|
||||
type: 'string',
|
||||
defaultValue: '7.1,5.1,2,1',
|
||||
|
|
@ -64,6 +67,7 @@ The default order is suitable for most people.
|
|||
7.1,5.1,2,1`,
|
||||
},
|
||||
{
|
||||
label: 'Codecs',
|
||||
name: 'codecs',
|
||||
type: 'string',
|
||||
defaultValue: '',
|
||||
|
|
@ -77,6 +81,7 @@ The default order is suitable for most people.
|
|||
aac,ac3`,
|
||||
},
|
||||
{
|
||||
label: 'Stream Types',
|
||||
name: 'streamTypes',
|
||||
type: 'string',
|
||||
defaultValue: 'video,audio,subtitle',
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ const details = (): IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Container',
|
||||
name: 'container',
|
||||
type: 'string',
|
||||
defaultValue: 'mkv',
|
||||
|
|
@ -35,6 +36,7 @@ const details = (): IpluginDetails => ({
|
|||
tooltip: 'Specify the container to use',
|
||||
},
|
||||
{
|
||||
label: 'Force Conform',
|
||||
name: 'forceConform',
|
||||
type: 'boolean',
|
||||
defaultValue: 'false',
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ const details = () :IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Framerate',
|
||||
name: 'framerate',
|
||||
type: 'number',
|
||||
defaultValue: '30',
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ const details = () :IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Target Resolution',
|
||||
name: 'targetResolution',
|
||||
type: 'string',
|
||||
defaultValue: '1080p',
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ const details = () :IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Bitrate',
|
||||
name: 'bitrate',
|
||||
type: 'string',
|
||||
defaultValue: '5000',
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ const details = (): IpluginDetails => ({
|
|||
icon: '',
|
||||
inputs: [
|
||||
{
|
||||
label: 'Output Codec',
|
||||
name: 'outputCodec',
|
||||
type: 'string',
|
||||
defaultValue: 'hevc',
|
||||
|
|
@ -38,6 +39,7 @@ const details = (): IpluginDetails => ({
|
|||
tooltip: 'Specify codec of the output file',
|
||||
},
|
||||
{
|
||||
label: 'FFmpeg Preset',
|
||||
name: 'ffmpegPreset',
|
||||
type: 'string',
|
||||
defaultValue: 'fast',
|
||||
|
|
@ -58,6 +60,7 @@ const details = (): IpluginDetails => ({
|
|||
tooltip: 'Specify ffmpeg preset',
|
||||
},
|
||||
{
|
||||
label: 'FFmpeg Quality',
|
||||
name: 'ffmpegQuality',
|
||||
type: 'number',
|
||||
defaultValue: '25',
|
||||
|
|
@ -67,6 +70,7 @@ const details = (): IpluginDetails => ({
|
|||
tooltip: 'Specify ffmpeg quality',
|
||||
},
|
||||
{
|
||||
label: 'Hardware Encoding',
|
||||
name: 'hardwareEncoding',
|
||||
type: 'boolean',
|
||||
defaultValue: 'true',
|
||||
|
|
@ -80,6 +84,7 @@ const details = (): IpluginDetails => ({
|
|||
tooltip: 'Specify whether to use hardware encoding if available',
|
||||
},
|
||||
{
|
||||
label: 'Hardware Type',
|
||||
name: 'hardwareType',
|
||||
type: 'string',
|
||||
defaultValue: 'auto',
|
||||
|
|
@ -96,6 +101,7 @@ const details = (): IpluginDetails => ({
|
|||
tooltip: 'Specify codec of the output file',
|
||||
},
|
||||
{
|
||||
label: 'Hardware Decoding',
|
||||
name: 'hardwareDecoding',
|
||||
type: 'boolean',
|
||||
defaultValue: 'true',
|
||||
|
|
@ -109,6 +115,7 @@ const details = (): IpluginDetails => ({
|
|||
tooltip: 'Specify whether to use hardware decoding if available',
|
||||
},
|
||||
{
|
||||
label: 'Force Encoding',
|
||||
name: 'forceEncoding',
|
||||
type: 'boolean',
|
||||
defaultValue: 'true',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue