And just for your eyes.. the 2 avisynth scripts i used
First i use this to deinterlace and encode into avi without compression
//////////////////////////////////////////////////////////////////////
SetMTMode(2,8)
mpeg2source("holiday_special.d2v")
SetMTMode(2)
ConvertToYV12()
QTGMC( Preset="very slow", NoiseBypass=1, NoiseRestore=0.0, Sharpness=1.8)
selecteven()
//////////////////////////////////////////////////////////////////////
After that i used this one for post processing on the uncompressed avi
/////////////////////////////////////////////////////////////////////
SetMTMode(2,8)
import("C:\Program Files (x86)\AviSynth 2.5\plugins\Stab.avs")
avisource("Holiday_special_pre_01.avi")
SetMTMode(2)
ConvertToYV12()
mergechroma(aWarpSharp(depth=20.0, thresh=0.75, blurlevel=2, cm=1))
unblend()
stab()
decimate()
SetMTMode(2)
Convolution3D (preset="animeLQ")
FFT3DFilter(sigma=2)
warpsharp(10,1)
LSFmod(strength=220)
GradFun2DBmod()
ColorYUV(gain_u=3)
Tweak(sat=1.3, hue=-8, cont=1.4, bright=-2)
FastLineDarkenMOD(thinning=0, strength=80)
crop(12,2,-8,-8)
lanczosresize(704,528)
/////////////////////////////////////////////////////////////////////
Too bad i still can't encode , i need to reinstall Windows on my PC and im planning to do it soon.. stay tune :D
Henry