OK, i installed the readavs and i get black screen with red writing at the top that say avstreamsynth:system exception - access violation.
On my way to install gspot.
By the way, here is my script
#================================================= ===#
# --== AviSynth script by MovieStacker v2.1.0 ==-- #
#================================================= ===#
# #
# ~ Movie Title...: The Hulk #
# ~ Movie Length..: 202548 frames (02:20:4
#
# ~ Size & Rate...: 720x480 @ 23.976 fps #
# ~ Dest Aspect...: DVD (720x480) #
# ~ Avg BitRate...: 554kbps (1x80min CD) #
# ~ Audio.........: 224kbps (228.64MB per CD) #
# #
#================================================= ===#
LoadPlugin("C:\Program Files\MovieStacker\Filters\MPEG2Dec3dg.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\Undot.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\aSharp.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\STMedianFilter.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\GripFit_YV12.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\UnFilter.dll")
Mpeg2Source("C:\DVD 2 Avi Projects\Hulk.d2v")
Undot()
aSharp(1, 4)
GripCrop(720, 480, overscan=3, source_anamorphic=false)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1)
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
## Linear Motion Adaptive Filtering ##
ScriptClip("nf = YDifferenceToNext()" + chr(13) + "nf >= 2 ? \
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()
## Functions ##
function fmin(int a, int b) {return (a < b) ? a : b}