I definitely had verification that it is Top Field First (as i tried doing the AssumeBFF().SeparateFields() and saw that bottom field first gave the error like Donald Graft said in his test for field order)
i also can verify that it is definitely 3:2 pulldown (3 clean frames, followed by 2 interlaced frames).





audio = NicAC3Source("VTS_03_1 T80 3_2ch 448Kbps DELAY 0ms.ac3")
video = video = MPEG2Source("VTS_03_1.d2v").AssumeTFF().Telecide(guide=1,post=2,show=true).ShowFrameNumber().ConvertToYUY2()
AudioDub(video,audio)
Now when the video is served without any post-processing, it has 36,426 frames
The frame rate is 29.97 FPS
When I save the avi and replay, it looks great, no interlacing artifacts
Now, When i add Decimate(cycle=5)
MPEG2Source("VTS_03_1.d2v").AssumeTFF().Telecide(guide=1,post=2,show=true).Decimate(cycle=5).ShowFrameNumber().ConvertToYUY2()
The frame rate is 23.976 FPS.
STill, looks great, no interlacing.
So my question is, If Telecide alone makes it look just fine with Evangelion,
why do i have to decimate? Please help clarify my misty understanding