diff --git a/index.html b/index.html index 44b02a2..4a6e0cd 100644 --- a/index.html +++ b/index.html @@ -396,7 +396,7 @@
Transform a video file with 4:3 aspect ratio into a video file with 16:9 aspect ration by correct pillarboxing.
+Transform a video file with 4:3 aspect ratio into a video file with 16:9 aspect ratio by correct pillarboxing.
ffmpeg -i input_file -filter:v "pad=ih*16/9:ih:(ow-iw)/2:(oh-ih)/2" -c:a copy output_file
Transform a video file with 16:9 aspect ratio into a video file with 4:3 aspect ration by correct letterboxing.
+Transform a video file with 16:9 aspect ratio into a video file with 4:3 aspect ratio by correct letterboxing.
ffmpeg -i input_file -filter:v "pad=iw:iw*3/4:(ow-iw)/2:(oh-ih)/2" -c:a copy output_file