PDA

View Full Version : Resizes bork avisynth


CompuKid101
11th June 2003, 01:16
If I have any resize (bicubic,bilinear,lanczos) in my script, avisynth gets a little freaky. Now if I take the script through VFAPI, the avi plays. Trying to open the script in Media Player Classic produces a 32x32 block of nothing.


:confused:


LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Convolution3DYV12.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3.dll")
MPEG2Source("D:\DVD\VOBs\DIEANOTHERDAY_DISC1\VIDEO_TS\intro.d2v")
SelectEvery(4,1)
Crop(0,58,0,356)
LanczosResize(360,178)

N_F
11th June 2003, 03:31
I think the error lies in your crop command. There are two different ways to put the numbers when cropping, yours doesn't seem to follow either of them. Check the avisynth documentation for further details.