Log in

View Full Version : Need help deinterlacing FMP TSR!


HOLiC
23rd March 2006, 09:47
http://www.filelodge.com/files/room10/247602/sample.m2v

Above link is a very short clip of RC2 DVD fullmetal panic TSR. I have tried and searched the forum to deinterlace this anime, but I still haven't found the right way...


AssumeTFF()
interp = separatefields().selecteven().EEDI2(field=1)
deinted=tdeint(edeint=interp,order=1,field=1)
TFM(mode=1,order=1,clip2=deinted)
TDecimate(mode=1)

KernelBob(1,8,false)
BlendBob(show=true,badFrames=1)


And of course, I tried decomb as well. Usually, one of those filter chain is enough (or with little tweak) to do the job... The main problem is that I can't get rid of the lines/jagginess completely no matter what I do. And with blendbob method, I get this weird image shadows...(did i even describe this right?)

I would appreciate it if anyone could give me some advise or point me in the right direction regarding how to get this clip deinterlaced properly.

lamer_de
24th March 2006, 09:22
You don't want to deinterlace, you want to do IVTC. The Decomb or TIVTC package is what you are looking for. However, if you do "weird" stuff like deinterlacing, deinterlacing again before decimating, it can't work :P

CU,
lamer_de

foxyshadis
24th March 2006, 11:35
This simply defies my attempts at ivtc, and I found out why: The whiteouts were applied after the telecine. Hah. Even a normal tfm().tdecimate() works fine outside the fade-to-white frames. The 3:2 pattern is also pretty irregular, probably hacked up afterward as well. If this only happens rarely, you should just take what you think looks best and run with it. I get a somewhat better result with:


AssumeTFF()
interp = separatefields().EEDI2(field=-2)#.selecteven()
deinted=tdeint(field=1,mode=2,edeint=interp)#,type=3)
TFM(mode=5,order=1,clip2=deinted)
TDecimate(mode=1)


But it introduces blending once or even twice per cycle, thanks to the editing, and it's twice as slow, so you might stick with yours. Make sure you cut out and process separately just the clips that do this, if the rest of the show is normal!

(New macrovision rip protection method: Post-telecine editing! Drive fansubbers insane with un-ivtcable anime!)

Mug Funky
24th March 2006, 14:03
*cough* encode interlaced *cough*

:)

you think that drives backerupperers insane... check out the same release in PAL land :)

HOLiC
24th March 2006, 18:22
You don't want to deinterlace, you want to do IVTC.

Oopse~ yes, ivtcing is what i meant...
And thank you everyone!! I was like banging my head on the wall because of I couldn't ivtc this clip.. but I feel better now that at least i know this clip is difficult to perform ivtc!! I'll play around with foxyshadis's script (again, thank you!! your name is on my hero list :p ), and.. I'll use mug funky's suggestion if nothing works out lol.