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
-
-
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:
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:
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. -
Originally Posted by onesikgypo
Telecide(Guide=1,Post=0)
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, 10:31 -
IVTC and AR halfD1 questions, converting to xvid
By spiritgumm in forum Video ConversionReplies: 54Last Post: 13th Sep 2010, 09:53 -
HDTV to MPEG (with IVTC) - simplest option?
By Tiernan in forum DVB / IPTVReplies: 8Last Post: 6th Aug 2009, 12:58 -
IVTC - Best Method?
By wrawlind in forum Video ConversionReplies: 7Last Post: 7th Aug 2007, 16:04 -
Convert 1080i .mpg to hr.hdtv (960x540 xvid)
By MrFingers in forum DVB / IPTVReplies: 4Last Post: 6th Aug 2007, 09:00