Quote:
Originally Posted by audioslave
I knew it!
I've read the manual but regarding the GaussResize I can't figure out where to use the "p" parameter (default 30). I would like to change it closer to 100.
|
Okay, I confess, there is a mismatch in the doc.
Look at the line for pointresize taht is just under :
Code:
GaussResize (clip, int target_width, int target_height, float "src_left", float "src_top", float "src_width", float "src_height")
PointResize (clip, int target_width, int target_height, float "src_left", float "src_top", float "src_width", float "src_height", float "p")
Pointresize does not have any "p" parameter... the to lines are simply switched
Note: for any avisynth plugin or command, you can put the parameters in the order you want, simply by naming them
all. You have to use the correct order only if you don't want to use the names.
Crop(704,480) is the same as Crop(width=704,height=480) and also Crop(height=480,width=704)