View Single Post
Old 15th July 2009, 10:36   #18  |  Link
m3mbran3
Registered User
 
Join Date: Jun 2009
Posts: 90
I see lots of mention of use of nnedi and TDeint, but how do these work together? can someone post an avisynth script snippet.
The reason I ask is because I have an interlaced PAL VHS source that I am deinterlacing using
Code:
AssumeTFF()
nnedi2(qual=3)
but would be keen to try out different methods, encoding time is not an issue for me.

edit: here is the rest of the script, pretty similar to shoopdabloop actually.
Code:
DGDecode_mpeg2source("C:\familyvids\xmas1989\Xmas 1989 to be trimmed.d2v", info=3, cpu=4)
ColorMatrix(hints=true, interlaced=true, threads=0)
ColorYUV(autowhite=true)
HDRAGC()

AssumeTFF()
nnedi2(qual=3)
crop( 12, 2, -12, -12)

mdata = DePanEstimate()
DePanStabilize(data=mdata, method=1, mirror=15)

TemporalDegrain(degrain=2)
Spline36Resize(720,576)
LSFmod(strength=80)

Last edited by m3mbran3; 15th July 2009 at 10:54.
m3mbran3 is offline   Reply With Quote