Thomas Davie
this is the script using autoload working without any problem
with all filters in plugins folder of avisynth 25!
is the same used to got the results in my last post here!
[AVISYNTH_Adaptative Philter]
0=FieldDeinterlace()
1=nf=0
2=GripCrop(^TargetWidth,^TargetHeight+^BorderTop+^ BorderBottom,overscan=^overscan,source_anamorphic= ^source_ana,dest_anamorphic=^dest_ana)
3=GripSize(resizer="BiCubicResize")
4=Undot()
5=Asharp(1,4)
6=STMedianFilter(^S_FilterThreshHold,^S_EdgeThresh Hold,0,0)
7=MergeChroma(blur(^blur_chroma))
8=MergeLuma(blur(^blur_luma))
9=SwitchThreshold=(Width<=352)?4
Width<=480)?3:2
10=ScriptClip("nf=round(YDifferenceToNext())"+chr( 13)+"nf>=SwitchThreshold?unfilter(-(fmin(nf*2,100)),-(fmin(nf*2,100))):TemporalCleaner(6+nf,11+nf)")
11=GripBorders()
12=function fmin(int f1,int f2){return(f1<f2)?f1:f2}
^overscan=1
^source_ana=false
^dest_ana=false
^S_FilterThreshHold=8
^S_EdgeThreshHold=32
^blur_chroma=1.58
^blur_luma=0.1
in my case i need "fielddeinterlace",if you don't need,
only remove and correct the numbers in the script.
if you got problems using this script check the filters.
are you using tmpgen259? (i don't understand your version posted)
change, some people got problems with 259 version!
edited:
corrections in the script..
was TemporalCleaner(6+nf,13+nf)") and
now TemporalCleaner(6+nf,11+nf)") is better.
thanks Phil.