From 81986081de9c0d452d23a13dd5d11e74a4a26cfd Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Sun, 29 Nov 2015 09:50:12 +0100 Subject: [PATCH] 16:9 to 4:3 added --- index.html | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index ea41c82..234ee47 100644 --- a/index.html +++ b/index.html @@ -515,7 +515,7 @@ path_name_and_extension_to_the_last_file
ffmpeg
starts the command
-i input_file
path, name and extension of the input file
-
-filter:v "ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
video padding
This resolution independent formula is actually padding any aspect ratio into 16:9, because the video filter uses relative values for input width (iw), input height (ih), output width (ow) and output height (oh).
+
-filter:v "pad=ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
video padding
This resolution independent formula is actually padding any aspect ratio into 16:9, because the video filter uses relative values for input width (iw), input height (ih), output width (ow) and output height (oh).
output_file.mpg
path and name of the output file
@@ -524,6 +524,27 @@ path_name_and_extension_to_the_last_file + + + + +