Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic Video or Audio Settings Template #548

Merged
merged 3 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
"use strict";
/* eslint-disable no-template-curly-in-string */
/* eslint-disable import/prefer-default-export */
Object.defineProperty(exports, "__esModule", { value: true });
exports.details = void 0;
var details = function () { return ({
name: 'Library Basic Video or Audio Settings',
description: "Basic Video or Audio settings designed to replicate\n 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',
},
],
}); };
exports.details = details;
Original file line number Diff line number Diff line change
@@ -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,
};