From 658857fdf4ecef8df0c4c1521ec4efa31cb44773 Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Sun, 20 Aug 2023 18:04:52 +0100 Subject: [PATCH] Remove old files --- .../ffmpegCommandVideoScale/1.0.0/index.js | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandVideoScale/1.0.0/index.js diff --git a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandVideoScale/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandVideoScale/1.0.0/index.js deleted file mode 100644 index 3da2d18..0000000 --- a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandVideoScale/1.0.0/index.js +++ /dev/null @@ -1,36 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.plugin = exports.details = void 0; -/* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */ -var details = function () { return ({ - name: 'Video Scale', - description: 'Change video scale', - style: { - borderColor: '#6efefc', - opacity: 0.5, - }, - tags: 'video', - isStartPlugin: false, - sidebarPosition: -1, - icon: '', - inputs: [], - outputs: [ - { - number: 1, - tooltip: 'Continue to next plugin', - }, - ], -}); }; -exports.details = details; -// eslint-disable-next-line @typescript-eslint/no-unused-vars -var plugin = function (args) { - var lib = require('../../../../../methods/lib')(); - // eslint-disable-next-line @typescript-eslint/no-unused-vars,no-param-reassign - args.inputs = lib.loadDefaultValues(args.inputs, details); - return { - outputFileObj: args.inputFileObj, - outputNumber: 1, - variables: args.variables, - }; -}; -exports.plugin = plugin;