From 351735d69ed436db5b30c6486d1fb1bd1b84559f Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Sat, 26 Aug 2023 19:51:21 +0100 Subject: [PATCH] Update video encoder tooltips --- .../ffmpegCommandSetVideoEncoder/1.0.0/index.js | 6 +++--- .../ffmpegCommandSetVideoEncoder/1.0.0/index.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.js index 411a2ca..72e421c 100644 --- a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.js +++ b/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.js @@ -64,7 +64,7 @@ var details = function () { return ({ // 'vp8', ], }, - tooltip: 'Specify the codec to use', + tooltip: 'Specify codec of the output file', }, { name: 'ffmpegPreset', @@ -84,7 +84,7 @@ var details = function () { return ({ 'ultrafast', ], }, - tooltip: 'Specify the codec to use', + tooltip: 'Specify ffmpeg preset', }, { name: 'ffmpegQuality', @@ -93,7 +93,7 @@ var details = function () { return ({ inputUI: { type: 'text', }, - tooltip: 'Specify the codec to use', + tooltip: 'Specify ffmpeg quality', }, { name: 'hardwareEncoding', diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts index 1bba815..6f31286 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVideoEncoder/1.0.0/index.ts @@ -32,7 +32,7 @@ const details = (): IpluginDetails => ({ // 'vp8', ], }, - tooltip: 'Specify the codec to use', + tooltip: 'Specify codec of the output file', }, { name: 'ffmpegPreset', @@ -52,7 +52,7 @@ const details = (): IpluginDetails => ({ 'ultrafast', ], }, - tooltip: 'Specify the codec to use', + tooltip: 'Specify ffmpeg preset', }, { name: 'ffmpegQuality', @@ -61,7 +61,7 @@ const details = (): IpluginDetails => ({ inputUI: { type: 'text', }, - tooltip: 'Specify the codec to use', + tooltip: 'Specify ffmpeg quality', }, { name: 'hardwareEncoding',