logo Sign In

Post #224391

Author
Moth3r
Parent topic
addborders() help in avisynth
Link to post in topic
https://originaltrilogy.com/post/id/224391/action/topic#224391
Date created
5-Jul-2006, 4:54 AM
Assuming the XviD is sized correctly, it should have a 1:1 pixel aspect ratio.

704/384 = 1.83, so it's not far off 1:1.85. (The aspect ratio of XviDs could be out by up to 3% because of the requirement to use mod16 resolutions.)

The second calculation is correct if the AR is supposed to be 1:1.83.
If it is supposed to be 1:1.85, then Lanczos4Resize(720,473).Addborders(0,3,0,4) would be correct.

Personally I would keep it simple and just use Lanczos4Resize(720,480) - because I have a pragmatic "that's close enough" approach to such calculations!