From 85f202666f895ec166f47a1206cd5773fa7b270e Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Thu, 16 Nov 2023 07:25:27 +0000 Subject: [PATCH] Add Basic Video or Audio Settings template --- .../video/libraryBasicVideoOrAudioSettings.ts | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 FlowPluginsTs/CommunityFlowTemplates/video/libraryBasicVideoOrAudioSettings.ts diff --git a/FlowPluginsTs/CommunityFlowTemplates/video/libraryBasicVideoOrAudioSettings.ts b/FlowPluginsTs/CommunityFlowTemplates/video/libraryBasicVideoOrAudioSettings.ts new file mode 100644 index 0000000..605afe7 --- /dev/null +++ b/FlowPluginsTs/CommunityFlowTemplates/video/libraryBasicVideoOrAudioSettings.ts @@ -0,0 +1,66 @@ +/* eslint-disable no-template-curly-in-string */ +/* eslint-disable import/prefer-default-export */ + +import { IflowTemplate } from '../../FlowHelpers/1.0.0/interfaces/interfaces'; + +const details = () :IflowTemplate => ({ + name: 'Library Basic Video or Audio Settings', + description: `Basic Video or Audio settings designed to replicate + the Basic Video or Basic Audio settings in the library settings`, + tags: '', + flowPlugins: [ + { + name: 'Input File', + sourceRepo: 'Community', + pluginName: 'inputFile', + version: '1.0.0', + id: '7jgXVq0nr', + position: { + x: 718.59375, + y: 119, + }, + }, + { + name: 'Replace Original File', + sourceRepo: 'Community', + pluginName: 'replaceOriginalFile', + version: '1.0.0', + id: 'jiZxqk6Mn', + position: { + x: 718.6406249999999, + y: 385.25, + }, + }, + { + name: 'Basic Video or Audio Settings', + sourceRepo: 'Community', + pluginName: 'basicVideoOrAudio', + version: '1.0.0', + id: '1Ic5EqipX', + position: { + x: 718.640625, + y: 255.75, + }, + }, + ], + flowEdges: [ + { + source: '7jgXVq0nr', + sourceHandle: '1', + target: '1Ic5EqipX', + targetHandle: null, + id: 'kSxxYNCmG', + }, + { + source: '1Ic5EqipX', + sourceHandle: '1', + target: 'jiZxqk6Mn', + targetHandle: null, + id: 'CNPsr76ct', + }, + ], +}); + +export { + details, +};