I just reinstalled my pc again ,installed autogk so have avisynth 2.54 installed. Just added the plugins dll i had saved in the plugins folder.
Getting this error.
Evaluate:Unrecognised exception!
(D:/kkkg/kkkg.avs,line 2)
Here is the script(know this works as have been using this for some time now.)
##
Mpeg2Source("D:\kkkg\kkkg.d2v")
Telecide(order=0)
Decimate()
Undot
GripCrop(352, 240, overscan=2, source_anamorphic=false)
GripSize(resizer="LanczosResize")
STMedianFilter(3, 3, 1, 1)
MergeChroma(blur(1.55))
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1) ")
GripBorders()
#LetterBox(8,8,8,
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
##