helix
5th January 2005, 05:57
I've seen a few scripts around here with two filters put in the same line. I've look in the AVIsynth manual and have been unable to anything relating to this. Some examples are...
TDeint().Decimate(mode=2,quality=2)
or...
Msmooth(threshold=5, strength=3).Convolution3d("animelq")
whats the difference with just doing...
TDeint()
Decimate(mode=2,quality=2)
or...
Msmooth(threshold=5, strength=3)
Convolution3d("animelq")
Does it change the effect of the filters in any way, or make the script any faster?
TDeint().Decimate(mode=2,quality=2)
or...
Msmooth(threshold=5, strength=3).Convolution3d("animelq")
whats the difference with just doing...
TDeint()
Decimate(mode=2,quality=2)
or...
Msmooth(threshold=5, strength=3)
Convolution3d("animelq")
Does it change the effect of the filters in any way, or make the script any faster?