The DESPOT filter for AviSynth works miracles!
You can get it here:
http://www.avisynth.org/warpenterprises/
Here is a common script I use:
Code:
LoadPlugin("Convolution3d.dll")
Loadplugin("avisynth_c.dll")
LoadCPlugin("despot.dll")
avisource("D:\capture.avi")
SeparateFields()
odd=SelectOdd.Convolution3D (0, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D (0, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
ConvertToYV12(interlaced=true)
despot(interlaced=true)
ConvertToYUY2(interlaced=true)
For TMPGENC, I just need to change this:
Code:
ConvertToRGB(interlaced=true)