From 81cebf2383b5823dd3120f97cb2336eeebbf7026 Mon Sep 17 00:00:00 2001 From: Jordy Date: Thu, 31 Oct 2024 14:07:29 -0500 Subject: [PATCH] fix: added 576p to dropdown - Added 576p to the dropdown menu - Corrected 480p to be scale=640 (should be a 4:3 aspect ratio, typically) --- .../ffmpegCommandSetVdeoResolution/1.0.0/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts index 6069a9277..68c5773a7 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetVdeoResolution/1.0.0/index.ts @@ -28,6 +28,7 @@ const details = () :IpluginDetails => ({ type: 'dropdown', options: [ '480p', + '576p', '720p', '1080p', '1440p', @@ -50,7 +51,7 @@ const getVfScale = ( ):string[] => { switch (targetResolution) { case '480p': - return ['-vf', 'scale=720:-2']; + return ['-vf', 'scale=640:-2']; case '576p': return ['-vf', 'scale=720:-2'];