diff --git a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.js index 206acdf..8dc8659 100644 --- a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.js +++ b/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.js @@ -15,8 +15,9 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.plugin = exports.details = void 0; /* eslint-disable no-param-reassign */ var details = function () { return ({ - name: 'Start', - description: 'Start FFmpeg Command', + name: 'Begin Command', + description: 'Begin creating the FFmpeg command for the current working file.' + + ' Should be used before any other FFmpeg command plugins.', style: { borderColor: 'green', }, diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.ts index 83430cf..22a0426 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandStart/1.0.0/index.ts @@ -9,8 +9,9 @@ import { Istreams } from '../../../../FlowHelpers/1.0.0/interfaces/synced/IFileO /* eslint-disable no-param-reassign */ const details = () :IpluginDetails => ({ - name: 'Start', - description: 'Start FFmpeg Command', + name: 'Begin Command', + description: 'Begin creating the FFmpeg command for the current working file.' + + ' Should be used before any other FFmpeg command plugins.', style: { borderColor: 'green', },