Hi,
I just got a new tuner card and ive been plaing around with recording some HD channels and stuff, and i was now looking to convert them to xvid, and so i was looking into the IVTC needed.
By looking at the video in DGIndex i can tell its hard interlaced - and so obviously force film will not work. The frames are like the following: IBBPBBPBBPBBPBBI
Ive done a few trials using the following script, whcih as always worked quite well for me in converting dvd's:
The resulting video didnt have any ghosting or jerky playback, which was good, but i was just wondering whether there was perhaps a better method/script to use, specifically when i was converting HDTV Caps?Code:Telecide(order=0) Decimate(cycle=5)
Thanks.
+ Reply to Thread
Results 1 to 8 of 8
-
-
That's got nothing to do with whether or not it can be IVTC'd. Nor can you really tell from DGIndex whether or not a regular IVTC will work. You have to examine the individual frames and look for the telltale 3/2 progressive/interlaced pattern in every 5 frame sequence. If 1080i/29.97fps and from a film source it can usually be IVTC'd. If 720p/59.94fps you only have to delete the duplicate frames since all frames are progressive already.Originally Posted by onesikgypo
-
OK Thanks,
What i mean by DGIndex was that it showed the video type as NTSC, rather then a xx% film.
How can i examine the individual frames? I know people have said that you can just look at the d2v file, however all i see are lines such as:
with the only relevant thing i can tell being:Code:900 1 0 61914922 0 0 32 32 92 b2 b2 a2 b2 b2 a2 b2 b2 a2 b2 b2 a2
Code:FINISHED 0.00% FILM
-
Some programs can open a D2V for frame-by-frame examination. Gordian Knot is one such program. Otherwise open a basic and unfiltered script in VDub(Mod):
LoadPlugin("C:\Path\To\DGDecode.dll")
MPEG2Source("C:\Path\To\Movie.d2v")
A 0% Film (100% NTSC) D2V can be true interlace, hard telecine, or something really screwy like some field blended PAL2NTSC garbage. The only way to tell what you have is by examining the individual frames. -
Well, use Order=0 only if it's BFF, and most DVDs use TFF. You can get the field order by running the Preview in DGIndex. Or read the DecombReferenceManual which gives detailed instructions how to determine the field order. Also, upgrade your Decomb as no longer do you set the field order in Telecide, but separately before Telecide. And adding Guide=1 is usually a good idea for hard telecined NTSC stuff. Read the manual. A current script might go:
AssumeTFF() # if it's really TFF
Telecide(Guide=1)
Decimate()
There are 2 main AviSynth IVTCs. Decomb is one (the one you're using) and TIVTC is the other. -
Hi,
Thanks for the advice
I looked in DGIndex whilst parsing the HDTV mpg clip, and it did come up as top field first, i also confirmed this the way the document recommended, by ensuring there was no jerky playback in a simple avs script with AssumeTFF().SeparateFields()
I did read the instruction manaual, and similar to yours i deduced that i should use the following script:
What query i did have however, was that in the manual they specified that for fast encoding, you could turn of post processing for " a nice clean input stream". However, i'm unclear as to what exactly this is referring to?Code:AssumeTFF() Telecide(Guide=1) Decimate(Cycle=5)
They also recomended disabling frame displays - im assuming that this wasnt a code that could be inputted into the avs script, rather i should just close that window when it pops up when encoding is occurring.
Thankyou for all your help thus far. -
Telecide has a check after field matching to see if any interlaced frames slipped through. If it spots any it deinterlaces them. This is usually pretty strict and sometimes deinterlaces "clean" frames, so if you leave on the post processor, you might want to tweak the VThresh (check the manual). If you're pretty sure that the field matching is good (that this is a 'normal' hard telecined video, without pattern breaks and other oddities, and with no left over interlaced frames), then you might want to disable the post processor (the interlacing check) with:Originally Posted by onesikgypo
Telecide(Guide=1,Post=0)
This is pretty standard (but good) advice. You don't want to have the video playing while encoding. If using VDub(Mod) to encode, turn off 'Display Input Video' and 'Display Output Video'.They also recomended disabling frame displays
Similar Threads
-
IVTC for xvid choppy on TV playback
By spiritgumm in forum Video ConversionReplies: 15Last Post: 12th Feb 2011, 11:31 -
IVTC and AR halfD1 questions, converting to xvid
By spiritgumm in forum Video ConversionReplies: 54Last Post: 13th Sep 2010, 10:53 -
HDTV to MPEG (with IVTC) - simplest option?
By Tiernan in forum DVB / IPTVReplies: 8Last Post: 6th Aug 2009, 13:58 -
IVTC - Best Method?
By wrawlind in forum Video ConversionReplies: 7Last Post: 7th Aug 2007, 17:04 -
Convert 1080i .mpg to hr.hdtv (960x540 xvid)
By MrFingers in forum DVB / IPTVReplies: 4Last Post: 6th Aug 2007, 10:00



Quote