Hi all
Below is my avs script, I have AviSynth 2.5.3 and CCE 2.67, source has a res of 640x272, computer is a Pentium 4 2.8 Ghz, I get speed of 0.17 in CCE, quite slow, is it normal ? Anyway to optimize it ?
Thanks
Omega
-------------------------------------
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\Mpeg 2dec\MPEG2DEC.dll")
AVISource("E:\Vob\$Done\MYAVI.AVI",False)
ConvertToYUY2()
Limiter()
GripCrop(720, 480, overscan=2, source_anamorphic=true)
GripSize(resizer="BicubicResize")
Levels(0,1.85,255,0,255)
PixieDust(limit=5)
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
GripBorders()
Limiter()
AddAudio()
----------------------------------------
|