Log in

View Full Version : PAL movie deinterlacer


Wilbert
10th September 2002, 10:21
PAL movie deinterlacer does the following: swap fields followed by a phase shift. The following two-line script does the same:

clip.SwapFields.AssumeBFF
SeparateFields.DeleteFrame(0).AssumeFieldBased.Weave

Variants of this without AssumeBFF doesn't seem to work. Can it be done without AssumeBFF?

DJ Bobo
10th September 2002, 10:58
Better use this:

Loadplugin("...\decomb.dll")
Telecide()

That's it.
It has the advantadge to adapt to any fields order change. Your method doesn't seem to adapt to any fields order change.

Si
10th September 2002, 11:05
You could use

ComplementParity
SeparateFields.DeleteFrame(0).AssumeFieldBased.Weave

instead but whats the problem with your script?

regards
Simon

Wilbert
10th September 2002, 12:05
@DJ Bobo,

Thanks!

@siwalters,

I wanted to know how to do it with AviSynth 1.xx, where AssumeBFF is not available.