View Full Version : TMPEGENC's IVTC filter equivalent?
kcb
27th February 2006, 10:54
I use to encode using SVCD, i'm gradually learning XviD so far it's going well. I have one question... what do i use to ivtc etc manually where i can select the frames? I'm currently using GKnot to encode xvid. Is there some external program that i can use or is there a avisynth filter that can handle this? I'm talking about NTSC and PAL sources in general.
foxyshadis
27th February 2006, 11:08
If you really have to do it manually, you could try yatta, which is great for control freaks. But you really should just throw tivtc/decomb at it and save yourself a lot of time and trouble.
kcb
27th February 2006, 14:03
yeah TIVTC works great with NTSC sources. What about 2:2 pulldown with PAL?
How about if i do it this way: use tmpegenc to find the pattern and generate some sort of avisynth script and basically but that through gknot? how exactly is that done with a PAL source? i.e. if the sequence of patterns is 101010 whats the method/function etc that i have to use?
Anyway if that seems a bit too confusing, perhaps someone could show me a worked example of PAL 2:2 pulldown with tivtc.
foxyshadis
27th February 2006, 21:45
Sorry, I didn't see your other thread. You shouldn't need to change anything for 2:2. Just use the correct order and mode=0+, increase the mode until you get the best results. No decimate with pal.
kcb
27th February 2006, 23:55
heres what i have for NTSC IVTC
AssumeTFF()
Interp = SeparateFields().SelectEven().EEDI2(field=1)
Deinted=TDeint(order=1,field=1,edeint=Interp)
TFM(mode=6,order=1,PP=7,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(mode=1)
all i have to change is:
AssumeTFF()
Interp = SeparateFields().SelectEven().EEDI2(field=1)
Deinted=TDeint(order=1,field=1,edeint=Interp)
TFM(mode=0,order=1,PP=7,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(mode=0)
or a more simplier:
TFM(order=0)
and from the example:
mpeg2source("c:\oursource.d2v")
tfm(d2v="c:\oursource.d2v")
*confused* which should i use?
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.