logo Sign In

Post #279519

Author
roxy99
Parent topic
Panorama() - an AviSynth function for converting 4:3 into 16:9
Link to post in topic
https://originaltrilogy.com/post/id/279519/action/topic#279519
Date created
27-Mar-2007, 5:29 PM
I get it. Mpeg2 for DVD by definition MUST be 720 x 480.
So it has to do with anamorphic ar on DVD then? If you burn to DVD the panorama converted avi then the resultant mpeg2 will play back in 16:9 resolution suitable for widescreen tv.

In that case given I am producing an Xvid mpeg2 is not applicable and I should add another resize at the end as follows:

lanczos4resize(688,508)
crop(0,14,0,-14)
addborders(16,0,16,0)
panorama(3)
lanczos4resize(720,400) [ or lanczos4resize(640,352) ]

Is that correct?