From ae0ff14bf0ff773579175749f09bf66b956642bd Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Mon, 27 Nov 2023 07:26:15 +0000 Subject: [PATCH] Add labels --- .../audio/checkAudioCodec/1.0.0/index.ts | 1 + .../audio/checkChannelCount/1.0.0/index.ts | 1 + .../audio/normalizeAudio/1.0.0/index.ts | 3 +++ .../classic/runClassicFilterPlugin/1.0.0/index.ts | 1 + .../classic/runClassicTranscodePlugin/1.0.0/index.ts | 1 + .../ffmpegCommandCustomArguments/1.0.0/index.ts | 2 ++ .../ffmpegCommandEnsureAudioStream/1.0.0/index.ts | 3 +++ .../ffmpegCommandRemoveStreamByProperty/1.0.0/index.ts | 3 +++ .../ffmpegCommandRorderStreams/1.0.0/index.ts | 5 +++++ .../ffmpegCommand/ffmpegCommandSetContainer/1.0.0/index.ts | 2 ++ .../ffmpegCommandSetVdeoFramerate/1.0.0/index.ts | 1 + .../ffmpegCommandSetVdeoResolution/1.0.0/index.ts | 1 + .../ffmpegCommandSetVideoBitrate/1.0.0/index.ts | 1 + .../ffmpegCommandSetVideoEncoder/1.0.0/index.ts | 7 +++++++ .../file/checkFileExists/1.0.0/index.ts | 2 ++ .../file/checkFileExtension/1.0.0/index.ts | 1 + .../file/checkFileNameIncludes/1.0.0/index.ts | 1 + .../CommunityFlowPlugins/file/checkFileSize/1.0.0/index.ts | 3 +++ .../file/compareFileDurationRatio/1.0.0/index.ts | 2 ++ .../file/compareFileSizeRatio/1.0.0/index.ts | 2 ++ .../file/compareFileSizeRatio/2.0.0/index.ts | 2 ++ .../file/copyToDirectory/1.0.0/index.ts | 3 +++ .../CommunityFlowPlugins/file/deleteFile/1.0.0/index.ts | 1 + .../file/moveToDirectory/2.0.0/index.ts | 2 ++ .../CommunityFlowPlugins/file/renameFile/1.0.0/index.ts | 1 + .../CommunityFlowPlugins/input/inputFile/1.0.0/index.ts | 2 ++ .../tools/checkNodeHardwareEncoder/1.0.0/index.ts | 1 + .../CommunityFlowPlugins/tools/goToFlow/1.0.0/index.ts | 1 + .../CommunityFlowPlugins/tools/goToFlow/2.0.0/index.ts | 2 ++ .../tools/notifyRadarrOrSonarr/1.0.0/index.ts | 3 +++ .../CommunityFlowPlugins/tools/waitTimeout/1.0.0/index.ts | 2 ++ .../CommunityFlowPlugins/tools/webRequest/1.0.0/index.ts | 4 ++++ .../video/CheckVideoFramerate/1.0.0/index.ts | 2 ++ .../video/checkOverallBitrate/1.0.0/index.ts | 3 +++ .../video/checkVideoBitrate/1.0.0/index.ts | 3 +++ .../video/checkVideoCodec/1.0.0/index.ts | 1 + .../video/runHealthCheck/1.0.0/index.ts | 1 + .../video/transcodeVideo/1.0.0/index.ts | 1 + FlowPluginsTs/FlowHelpers/1.0.0/interfaces/interfaces.ts | 2 +- 39 files changed, 79 insertions(+), 1 deletion(-) diff --git a/FlowPluginsTs/CommunityFlowPlugins/audio/checkAudioCodec/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/audio/checkAudioCodec/1.0.0/index.ts index 37672cd3a..534a7aaac 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/audio/checkAudioCodec/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/audio/checkAudioCodec/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = ():IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Codec', name: 'codec', type: 'string', defaultValue: 'aac', diff --git a/FlowPluginsTs/CommunityFlowPlugins/audio/checkChannelCount/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/audio/checkChannelCount/1.0.0/index.ts index 4540cf131..f5f3d6c78 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/audio/checkChannelCount/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/audio/checkChannelCount/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Channel Count', name: 'channelCount', type: 'number', defaultValue: '2', diff --git a/FlowPluginsTs/CommunityFlowPlugins/audio/normalizeAudio/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/audio/normalizeAudio/1.0.0/index.ts index eabfbddd5..7a2c5c66c 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/audio/normalizeAudio/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/audio/normalizeAudio/1.0.0/index.ts @@ -21,6 +21,7 @@ const details = (): IpluginDetails => ({ icon: '', inputs: [ { + label: 'i', name: 'i', type: 'string', defaultValue: '-23.0', @@ -31,6 +32,7 @@ const details = (): IpluginDetails => ({ defaults to -23.0`, }, { + label: 'lra', name: 'lra', type: 'string', defaultValue: '7.0', @@ -41,6 +43,7 @@ const details = (): IpluginDetails => ({ `, }, { + label: 'tp', name: 'tp', type: 'string', defaultValue: '-2.0', diff --git a/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicFilterPlugin/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicFilterPlugin/1.0.0/index.ts index 8eb33f8d1..297f49921 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicFilterPlugin/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicFilterPlugin/1.0.0/index.ts @@ -20,6 +20,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Plugin Source ID', name: 'pluginSourceId', type: 'string', defaultValue: 'Community:Tdarr_Plugin_00td_filter_by_codec', diff --git a/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicTranscodePlugin/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicTranscodePlugin/1.0.0/index.ts index 654050581..59d3bfc56 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicTranscodePlugin/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/classic/runClassicTranscodePlugin/1.0.0/index.ts @@ -21,6 +21,7 @@ const details = (): IpluginDetails => ({ icon: '', inputs: [ { + label: 'Plugin Source ID', name: 'pluginSourceId', type: 'string', defaultValue: 'Community:Tdarr_Plugin_MC93_Migz1FFMPEG', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandCustomArguments/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandCustomArguments/1.0.0/index.ts index e5c8c998d..37215090a 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandCustomArguments/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandCustomArguments/1.0.0/index.ts @@ -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: '', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandEnsureAudioStream/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandEnsureAudioStream/1.0.0/index.ts index e707af25b..0dece7c2d 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandEnsureAudioStream/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandEnsureAudioStream/1.0.0/index.ts @@ -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', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRemoveStreamByProperty/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRemoveStreamByProperty/1.0.0/index.ts index c5f4fa789..5a9c987eb 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRemoveStreamByProperty/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRemoveStreamByProperty/1.0.0/index.ts @@ -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', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRorderStreams/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRorderStreams/1.0.0/index.ts index 02e0283bc..758818c92 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRorderStreams/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandRorderStreams/1.0.0/index.ts @@ -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', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetContainer/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetContainer/1.0.0/index.ts index e5beb15c2..13057297a 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetContainer/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetContainer/1.0.0/index.ts @@ -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', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoFramerate/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoFramerate/1.0.0/index.ts index fdd8be4e0..37021be51 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoFramerate/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoFramerate/1.0.0/index.ts @@ -20,6 +20,7 @@ const details = () :IpluginDetails => ({ icon: '', inputs: [ { + label: 'Framerate', name: 'framerate', type: 'number', defaultValue: '30', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts index a73302849..8f44b1f32 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = () :IpluginDetails => ({ icon: '', inputs: [ { + label: 'Target Resolution', name: 'targetResolution', type: 'string', defaultValue: '1080p', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoBitrate/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoBitrate/1.0.0/index.ts index 4e21bedec..c3da552eb 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoBitrate/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoBitrate/1.0.0/index.ts @@ -20,6 +20,7 @@ const details = () :IpluginDetails => ({ icon: '', inputs: [ { + label: 'Bitrate', name: 'bitrate', type: 'string', defaultValue: '5000', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts index 094f233e1..7ac5f1fe9 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts @@ -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', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExists/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExists/1.0.0/index.ts index 2b5558155..a16c39c4b 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExists/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExists/1.0.0/index.ts @@ -21,6 +21,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'File To Check', name: 'fileToCheck', type: 'string', // eslint-disable-next-line no-template-curly-in-string @@ -32,6 +33,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify file to check using templating e.g. ${fileName}_720p.${container}', }, { + label: 'Directory', name: 'directory', type: 'string', defaultValue: '', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExtension/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExtension/1.0.0/index.ts index 1149b1cf1..7d6361f05 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExtension/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileExtension/1.0.0/index.ts @@ -20,6 +20,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Extensions', name: 'extensions', type: 'string', defaultValue: 'mkv,mp4', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts index 21680e8c8..f54ac4154 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts @@ -20,6 +20,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Terms', name: 'terms', type: 'string', // eslint-disable-next-line no-template-curly-in-string diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileSize/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileSize/1.0.0/index.ts index b43505362..f024c9181 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileSize/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileSize/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Unit', name: 'unit', type: 'string', defaultValue: 'GB', @@ -34,6 +35,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify the unit to use', }, { + label: 'Greater Than', name: 'greaterThan', type: 'number', defaultValue: '0', @@ -43,6 +45,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify lower bound', }, { + label: 'Less Than', name: 'lessThan', type: 'number', defaultValue: '10000', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileDurationRatio/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileDurationRatio/1.0.0/index.ts index d9a92dfa3..539cc0a24 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileDurationRatio/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileDurationRatio/1.0.0/index.ts @@ -21,6 +21,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Greater Than', name: 'greaterThan', type: 'number', defaultValue: '99.5', @@ -31,6 +32,7 @@ const details = (): IpluginDetails => ({ + 'Default value is 99.5% so new file duration must be at least 40% of original file duration.', }, { + label: 'Less Than', name: 'lessThan', type: 'number', defaultValue: '100.5', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts index dfcd7148f..6a9daf95f 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts @@ -20,6 +20,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Greater Than', name: 'greaterThan', type: 'number', defaultValue: '40', @@ -30,6 +31,7 @@ const details = (): IpluginDetails => ({ + 'Default value is 40% so new file size must be at least 40% of original file size.', }, { + label: 'Less Than', name: 'lessThan', type: 'number', defaultValue: '110', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/2.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/2.0.0/index.ts index c3dd7f057..079316f69 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/2.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/2.0.0/index.ts @@ -20,6 +20,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Greater Than', name: 'greaterThan', type: 'number', defaultValue: '40', @@ -30,6 +31,7 @@ const details = (): IpluginDetails => ({ + 'Default value is 40% so new file size must be at least 40% of original file size.', }, { + label: 'Less Than', name: 'lessThan', type: 'number', defaultValue: '110', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/copyToDirectory/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/copyToDirectory/1.0.0/index.ts index 92aec6551..c04d61e53 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/copyToDirectory/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/copyToDirectory/1.0.0/index.ts @@ -23,6 +23,7 @@ const details = (): IpluginDetails => ({ icon: 'faArrowRight', inputs: [ { + label: 'Output Directory', name: 'outputDirectory', type: 'string', defaultValue: '', @@ -32,6 +33,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify ouput directory', }, { + label: 'Keep Relative Path', name: 'keepRelativePath', type: 'boolean', defaultValue: 'false', @@ -45,6 +47,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify whether to keep the relative path', }, { + label: 'Make Working File', name: 'makeWorkingFile', type: 'boolean', defaultValue: 'false', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/deleteFile/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/deleteFile/1.0.0/index.ts index fe53fa574..99c4c025b 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/deleteFile/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/deleteFile/1.0.0/index.ts @@ -20,6 +20,7 @@ const details = (): IpluginDetails => ({ icon: 'faTrash', inputs: [ { + label: 'File To Delete', name: 'fileToDelete', type: 'string', defaultValue: 'workingFile', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/moveToDirectory/2.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/moveToDirectory/2.0.0/index.ts index 2bf0446fe..3e6a032b4 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/moveToDirectory/2.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/moveToDirectory/2.0.0/index.ts @@ -25,6 +25,7 @@ const details = ():IpluginDetails => ({ icon: 'faArrowRight', inputs: [ { + label: 'Output Directory', name: 'outputDirectory', type: 'string', defaultValue: '', @@ -34,6 +35,7 @@ const details = ():IpluginDetails => ({ tooltip: 'Specify ouput directory', }, { + label: 'Keep Relative Path', name: 'keepRelativePath', type: 'boolean', defaultValue: 'false', diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/renameFile/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/renameFile/1.0.0/index.ts index d48a26362..10b4fb141 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/renameFile/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/renameFile/1.0.0/index.ts @@ -23,6 +23,7 @@ const details = (): IpluginDetails => ({ icon: '', inputs: [ { + label: 'File Rename', name: 'fileRename', type: 'string', // eslint-disable-next-line no-template-curly-in-string diff --git a/FlowPluginsTs/CommunityFlowPlugins/input/inputFile/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/input/inputFile/1.0.0/index.ts index 187bbe002..cba91e7bf 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/input/inputFile/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/input/inputFile/1.0.0/index.ts @@ -22,6 +22,7 @@ const details = (): IpluginDetails => ({ icon: '', inputs: [ { + label: 'File Access Checks', name: 'fileAccessChecks', type: 'boolean', defaultValue: 'false', @@ -35,6 +36,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Will check if input file and cache are readable and writable', }, { + label: 'Pause Node If Access Checks Fail', name: 'pauseNodeIfAccessChecksFail', type: 'boolean', defaultValue: 'false', diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/checkNodeHardwareEncoder/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/checkNodeHardwareEncoder/1.0.0/index.ts index e56206498..d47881971 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/checkNodeHardwareEncoder/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/checkNodeHardwareEncoder/1.0.0/index.ts @@ -29,6 +29,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Hardware Encoder', name: 'hardwareEncoder', type: 'string', defaultValue: 'hevc_nvenc', diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/1.0.0/index.ts index 51eb7f6f7..3bcda7b5e 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = ():IpluginDetails => ({ icon: 'faArrowRight', inputs: [ { + label: 'Flow ID', name: 'flowId', type: 'string', defaultValue: '', diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/2.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/2.0.0/index.ts index c04baecdd..a1843adba 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/2.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/goToFlow/2.0.0/index.ts @@ -19,6 +19,7 @@ const details = ():IpluginDetails => ({ icon: 'faArrowRight', inputs: [ { + label: 'Flow ID', name: 'flowId', type: 'string', defaultValue: '', @@ -29,6 +30,7 @@ const details = ():IpluginDetails => ({ tooltip: 'Specify flow ID to go to', }, { + label: 'Plugin ID', name: 'pluginId', type: 'string', defaultValue: 'start', diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/1.0.0/index.ts index 2dd235b26..2d9f75b93 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/1.0.0/index.ts @@ -18,6 +18,7 @@ const details = (): IpluginDetails => ({ icon: 'faBell', inputs: [ { + label: 'Arr', name: 'arr', type: 'string', defaultValue: 'radarr', @@ -28,6 +29,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify which arr to use', }, { + label: 'Arr API Key', name: 'arr_api_key', type: 'string', defaultValue: '', @@ -37,6 +39,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Input your arr api key here', }, { + label: 'Arr Host', name: 'arr_host', type: 'string', defaultValue: 'http://192.168.1.1:7878', diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/waitTimeout/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/waitTimeout/1.0.0/index.ts index f61d15fd4..20563a5fa 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/waitTimeout/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/waitTimeout/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({ icon: 'faClock', inputs: [ { + label: 'Amount', name: 'amount', type: 'string', defaultValue: '1', @@ -28,6 +29,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify the amount of time to wait', }, { + label: 'Unit', name: 'unit', type: 'string', defaultValue: 'seconds', diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/webRequest/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/webRequest/1.0.0/index.ts index 76c19a26c..92cd8d630 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/webRequest/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/webRequest/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({ icon: 'faArrowRight', inputs: [ { + label: 'Method', name: 'method', type: 'string', defaultValue: 'post', @@ -34,6 +35,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify request method', }, { + label: 'Request URL', name: 'requestUrl', type: 'string', defaultValue: 'http://example.com', @@ -43,6 +45,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify request URL', }, { + label: 'Request Headers', name: 'requestHeaders', type: 'string', defaultValue: `{ @@ -57,6 +60,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify request URL', }, { + label: 'Request Body', name: 'requestBody', type: 'string', defaultValue: `{ diff --git a/FlowPluginsTs/CommunityFlowPlugins/video/CheckVideoFramerate/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/video/CheckVideoFramerate/1.0.0/index.ts index 98a280f58..615dd1a6c 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/video/CheckVideoFramerate/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/video/CheckVideoFramerate/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Greater Than', name: 'greaterThan', type: 'number', defaultValue: '0', @@ -28,6 +29,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify lower bound of fps', }, { + label: 'Less Than', name: 'lessThan', type: 'number', defaultValue: '60', diff --git a/FlowPluginsTs/CommunityFlowPlugins/video/checkOverallBitrate/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/video/checkOverallBitrate/1.0.0/index.ts index d9bd7ee26..fbddb3f47 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/video/checkOverallBitrate/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/video/checkOverallBitrate/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Unit', name: 'unit', type: 'string', defaultValue: 'kbps', @@ -33,6 +34,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify the unit to use', }, { + label: 'Greater Than', name: 'greaterThan', type: 'number', defaultValue: '0', @@ -42,6 +44,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify lower bound', }, { + label: 'Less Than', name: 'lessThan', type: 'number', defaultValue: '10000', diff --git a/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoBitrate/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoBitrate/1.0.0/index.ts index 4c6182d45..84ce0d591 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoBitrate/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoBitrate/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = (): IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Unit', name: 'unit', type: 'string', defaultValue: 'kbps', @@ -33,6 +34,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify the unit to use', }, { + label: 'Greater Than', name: 'greaterThan', type: 'number', defaultValue: '0', @@ -42,6 +44,7 @@ const details = (): IpluginDetails => ({ tooltip: 'Specify lower bound', }, { + label: 'Less Than', name: 'lessThan', type: 'number', defaultValue: '10000', diff --git a/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoCodec/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoCodec/1.0.0/index.ts index 03de31347..39f9364b5 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoCodec/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/video/checkVideoCodec/1.0.0/index.ts @@ -19,6 +19,7 @@ const details = ():IpluginDetails => ({ icon: 'faQuestion', inputs: [ { + label: 'Codec', name: 'codec', type: 'string', defaultValue: 'hevc', diff --git a/FlowPluginsTs/CommunityFlowPlugins/video/runHealthCheck/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/video/runHealthCheck/1.0.0/index.ts index 7a9d9969c..550062b5b 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/video/runHealthCheck/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/video/runHealthCheck/1.0.0/index.ts @@ -23,6 +23,7 @@ const details = (): IpluginDetails => ({ icon: '', inputs: [ { + label: 'Type', name: 'type', type: 'string', defaultValue: 'quick', diff --git a/FlowPluginsTs/CommunityFlowPlugins/video/transcodeVideo/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/video/transcodeVideo/1.0.0/index.ts index 50f48b334..14b7d1e8b 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/video/transcodeVideo/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/video/transcodeVideo/1.0.0/index.ts @@ -21,6 +21,7 @@ const details = ():IpluginDetails => ({ icon: '', inputs: [ { + label: 'Target Codec', name: 'target_codec', type: 'string', defaultValue: 'hevc', diff --git a/FlowPluginsTs/FlowHelpers/1.0.0/interfaces/interfaces.ts b/FlowPluginsTs/FlowHelpers/1.0.0/interfaces/interfaces.ts index 7fc42fed0..d9f2c0aa5 100644 --- a/FlowPluginsTs/FlowHelpers/1.0.0/interfaces/interfaces.ts +++ b/FlowPluginsTs/FlowHelpers/1.0.0/interfaces/interfaces.ts @@ -32,7 +32,7 @@ export interface IpluginInputUi { } export interface IpluginInputs { - label?: string, + label: string, name: string, type: 'string' | 'boolean' | 'number', defaultValue: string,