Quote:
Originally Posted by syk2c11
Hi there,
The development of filters is getting faster and faster, I am trying to catch up with its pace. Can I have the lastest script please? Which combination is the best at the moment?
|
you'll right,very faster.....when we test a new....then ...another new one.
in my oppinion:
bilinear with blockbuster,nomosmoother and fluxsmoother(slow and very clean)
or
bilinear with temporalsmoother and unfilter(fast and clean)
[AVISYNTH_Bilinear, Blockbuster, NoMoSmooth & FluxSmooth]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin(!Blockbuster.dll)
3=LoadPlugin(!NoMoSmooth.dll)
4=LoadPlugin(!FluxSmooth.dll)
5=Blockbuster( method="noise", detail_min=1, detail_max=10, variance=1)
6=Blockbuster( method="sharpen", detail_min=^detail_min, detail_max=^detail_max, strength=^StrengthValue)
7=NoMoSmooth()
8=FluxSmooth()
!Blockbuster.dll=C:\******\Blockbuster.dll
!NoMoSmooth.dll=C:\******\NoMoSmooth.dll
!FluxSmooth.dll=C:\******\FluxSmooth.dll
^detail_min=20
^detail_max=90
^StrengthValue=20
[AVISYNTH_BilinearResize with TemporalSmoother & Unfilter]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin(!MPEG2DEC2.dll)
3=TemporalSmoother(^Strength,^Radius)
4=LoadPlugin(!Unfilter.dll)
5=Unfilter(^x_value,^y_value)
!MPEG2DEC2.dll=C:\******\MPEG2Dec\MPEG2DEC2.dll
^Strength=2
^Radius=1
!Unfilter.dll=C:\******\UnFilter.dll
^x_value=20
^y_value=20