Log in

View Full Version : Deinterlacing


ScarAce1989
18th June 2015, 08:47
Hi,

I'm trying to deinterlace a video, but I don't know which method to use. How to determine which method I should use?
Best I get is:
tfm(pp=0).tdecimate()
Here is a sample of the video:

https://mega.co.nz/#!vFoyhJhR!_EOK726d18npxWJws2IMWMXPez_Bi1lKFl4I7Bsl7Lo

Thanks!

huhn
18th June 2015, 09:53
this source looks like VFR. it has a mix of 2:2 cadence and 3:2 cadence.

not so easy to judge on the sample. a camera pan would help a lot.

mpeg2source("c:\oursource.d2v")
tfm(d2v="c:\oursource.d2v")
tdecimate(mode=3, hybrid=2, vfrDec=1, mkvOut="mkv-timecodesfile.txt")

may add mode=5 in TFM.

there are other VFR detelecine filter like animeivtc (http://forum.doom9.org/showthread.php?t=138305) or you can use handbrake (https://handbrake.fr/) for this.

smooth VFR playback is really hard without madVR. so you can just deinterlace it to 30 or 60 FPS and just encode it. it will judder on most playback system anyway.

ScarAce1989
18th June 2015, 10:04
Thanks.

~links removed~

huhn
18th June 2015, 10:39
sorry an whole episode is way over a sample.

ScarAce1989
19th June 2015, 09:53
Can someone help me with this script?

This is what I got so far:

tfm(pp=0)

cc(y1=100, y2=100, c1=120, c2=256, interlaced=false, yc=2.0, ylimit=true, climit=true)
AAA(Xshrp=15, Yshrp=15, US=1, DS=2, chroma=false)
ToonLite(strength=1.0)

Crop(22, 0, -18, 0)
AssumeFPS(23.976)

ScarAce1989
19th June 2015, 11:50
Nevermind...