Material that got IVTCed is neither of those, it's progressive. And to get the best result for progressive material, I felt that it looked best to use two instances of SangNom... one using "order=0" and one using "order =1".
I am using the v1, v2, v3, and so on to keep the script a little more cleaned up. So, your script would have to look like this:
v1 = AviSource("p:\anh\interim\anh_interim.avi").SangNom(order=0)
v2 = AviSource("p:\anh\interim\anh_interim.avi").SangNom(order=1)
v3 = v1.overlay(v2, opacity = 0.5)
return v3
v2 = AviSource("p:\anh\interim\anh_interim.avi").SangNom(order=1)
v3 = v1.overlay(v2, opacity = 0.5)
return v3
You could add the "aa=" attribute to the SangNom-filters and play with the setting. For the results I posted in Zion's thread I didn't put it in (which left it at its default value... whatever it is). By the way, SangNom adds a little blur to the image, so it's good to add some sharpening (I prefer the LimitedSharpen-function) afterwards.
My script above looks so big, because it's not just antialiasing the clip, but IVTCing, de-ghosting, sharpening, color-correcting AND rescaling it as well.