chilledoutuk
21st January 2004, 12:12
Ok i have only been using avisynth for a few weeks and have been getting good results but one thing i cant ind teh answer for is it better to crop before resizing or is it better to crop after.
heres two scripts i have used recently
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\MPEGDecoder.dll")
MPEGSource("ga.d2v")
Crop(0,80,0,-80)
LanczosResize(1024,416)
Becuase im only resizing the x axis i thought it would save time writing scripts if i always resized to 1024x576 and then cropped the borders after.
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\MPEGDecoder.dll")
MPEGSource("ga.d2v")
LanczosResize(1024,576)
Crop(0,80,0,-80)
the most impotant question i have is will there be any difference in quality between the two if so which is better?
Secondly which is the fastest way?
Im going to do a couple of tests to see if i can tell the difference.
But i would be very apreciative if anyone could offer help optomizing my scripts as I am new to avisynth.
cheers
heres two scripts i have used recently
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\MPEGDecoder.dll")
MPEGSource("ga.d2v")
Crop(0,80,0,-80)
LanczosResize(1024,416)
Becuase im only resizing the x axis i thought it would save time writing scripts if i always resized to 1024x576 and then cropped the borders after.
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\MPEGDecoder.dll")
MPEGSource("ga.d2v")
LanczosResize(1024,576)
Crop(0,80,0,-80)
the most impotant question i have is will there be any difference in quality between the two if so which is better?
Secondly which is the fastest way?
Im going to do a couple of tests to see if i can tell the difference.
But i would be very apreciative if anyone could offer help optomizing my scripts as I am new to avisynth.
cheers