View Single Post
Old 19th December 2012, 17:59   #2203  |  Link
manolito
Registered User
 
manolito's Avatar
 
Join Date: Sep 2003
Location: Berlin, Germany
Posts: 3,078
Of course you're right...

Since I am notoriously lazy, all my AviSynth scripts use Stickboy's tools. All I have to do is set a global variable "Interlaced" to true or false. My denoising and sharpening filter script looks like this:
Code:
Interlaced==true ? JDL_UnFoldFieldsVertical(flip=true) : NOP()
# cnr2()
# degrainmedian(mode=2)
undot()
# deen()
asharp(1,4)
# MSharpen(highq=false, strength=70)
# PSharpen()
# HighPassSharpen(1,1)
# LimitedSharpenFaster()
# LSFmod()
Interlaced==true ? JDL_FoldFieldsVertical(flip=true) : NOP()
And resizing is done with JDL_InterlacedResize...



Cheers
manolito
manolito is offline   Reply With Quote