PDA

View Full Version : parmeters for borders,please.


jorel
26th December 2002, 06:34
i use this in the script (dvd2svcd):

[AVISYNTH_LanczosResize]
0=LanczosResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)

but i see something like this example:
0=LanczosResize(xxx,xxx,x,x,-x,x)
how can i enter the values?:(

please,don't send me links with questions cos
i'm doing a question and
need a simple answer and/or links if it is possible.

of course i search in forum,but don't see an simple answer!

thanks in advance!;) :)

cult
26th December 2002, 12:42
I thnik this is internal cropping.You can use Crop(10, 10, 200, 300).LanczosResize(100, 150)or use LanczosResize(100, 150, 10, 10, 200, 300)which is the same.But tests have shown that internal cropping(the 2nd example)is slower than using the crop(x,x,x,x) command.

jorel
26th December 2002, 17:36
Originally posted by cult
I thnik this is internal cropping.You can use Crop(10, 10, 200, 300).LanczosResize(100, 150)or use LanczosResize(100, 150, 10, 10, 200, 300)which is the same.But tests have shown that internal cropping(the 2nd example)is slower than using the crop(x,x,x,x) command.


thanks.but how can i know (discover)this values?:confused:

if(50,10 30,40)or(5,15,30,65)...??:confused: