View Full Version : Testing different filters with one encode?
misdecrypt
16th October 2006, 00:22
I usually take a clip of something I want to encode and try different filters on it. Presently I have to setup an avs script for each one I want to try and then encode it.
Is there a way I can have avisynth loop the same clip but use a different filter each iteration? This way I just need to feed this script once to my encoder?
foxyshadis
16th October 2006, 01:43
If that's the way you like to do it, a simple way is:
a=FluxSmooth()
b=fft3dfilter().limitedsharpenfaster()
c=DegrainMedian().Sharpen(1)
d=Invert().hdragc()
a+b+c+d
Don't forget to add the trim beforehand, to save time.
Another way to do this is to use AvsP, where you can see the effects instantly in its preview.
misdecrypt
16th October 2006, 07:39
That was exactly what I wanted. Thank you.
misdecrypt
19th October 2006, 23:29
Is there a way I can tag each scene, so that I know which filter is in use. Like some text in the lower corner. I couldnt find any sort of character generator plugin.
unskinnyboy
20th October 2006, 00:03
Try like:
a=FluxSmooth().Subtitle("FluxSmooth")
b=fft3dfilter().limitedsharpenfaster().Subtitle("FFT3D + LSF")
c=DegrainMedian().Sharpen(1).Subtitle("DeGrainMedian + Sharpen")
d=Invert().hdragc().Subtitle("Invert + HDRAGC")
a+b+c+d
misdecrypt
20th October 2006, 02:25
That worked great. Thank you.
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.