mikeym
July 22nd, 2008, 08:24 PM
Hi,
I'm working on a script for converting DVD's / video files to x246 and I want to know what's more important keeping my aspect ratio or my widths and heights as multiples of 16?
I can either use mencoder to calculate my aspect with
-vf scale=640:-2
or calculate it as a multiple of 16 and put that in
SCALE=704/416=1.69
WIDTH=640
HEIGHT=640/SCALE=378.1
ADJUSTED_HEIGHT=round( HEIGHT / 16 )*16=384
and then
-vf scale=640:384
Which is better?
I'm working on a script for converting DVD's / video files to x246 and I want to know what's more important keeping my aspect ratio or my widths and heights as multiples of 16?
I can either use mencoder to calculate my aspect with
-vf scale=640:-2
or calculate it as a multiple of 16 and put that in
SCALE=704/416=1.69
WIDTH=640
HEIGHT=640/SCALE=378.1
ADJUSTED_HEIGHT=round( HEIGHT / 16 )*16=384
and then
-vf scale=640:384
Which is better?