Log in

View Full Version : Stupid Avisynth question


lemmy999
1st June 2002, 20:44
I am new to Avisynth and I am really confused by the BicubicResize.
The example on the Avisynth page gives:

BicubicResize([b,c,]target-width,target-height,clip)
So you might have
BicubicResize(0.0, 0.75, 480, )

But everyone seems to use:
BicubicResize(target-width,target-height,[b,c,]clip)
BicubicResize(480, 480, 0.0, 0.75)

Will both work?

dividee
1st June 2002, 22:37
You read the old doc for avisynth v0.3, read the new one at www.videotools.net

The syntax is now:
BicubicResize(clip,target-width,target-height[,b,c])
(the implicit "last" is now the first argument).

lemmy999
1st June 2002, 23:05
thanks