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',