I ran some recent tests and I found that using BicubicResize instead of LanczosResize+MergeLuma(Blur(.2)) actually gives me a higher quality image and reduces the slight background flickering I was getting before.
Here is my old script:
Code:
Import ("C:\filters\functions.h")
AviSource("E:\Shrek.avi")
LegalClip()
GripCrop( width=528, height=480, overscan=2 )
GripSize(resizer="lanczosresize")
mergechroma(blur(1).blur(1))
mergeluma(blur(0.2))
SpaceDust()
FluxSmooth()
DctFilter(1,1,1,1,1,.5,.5,0)
GripBorders()
LegalClip()
SampleClip()
And here is my new script:
Code:
Import ("C:\filters\functions.h")
AviSource("E:\Shrek.avi")
LegalClip()
GripCrop( width=528, height=480, overscan=2 )
GripSize(resizer="bicubicresize")
mergechroma(blur(1).blur(1))
SpaceDust()
FluxSmooth()
DctFilter(1,1,1,1,1,.5,.5,0)
GripBorders()
LegalClip()
SampleClip()
Let me know your thought/results using this.
-Tenra