Hi,
From what i gathered - when using an NTSC Source - to determine whther IVTC is needed, when playing it in DGIndex for a few minutes, i was meant to look at the Frame Type, and if its FILM 95% or more then i should force film.
However when i play this clip, the framerate is 29.97 and the Video type just shows as "NTSC" - not film, nor any percentage.
So what does this mean?
Thanks.
+ Reply to Thread
Results 1 to 8 of 8
-
-
It means, among other things, that DGIndex is set for the default "Honor Pulldown Flags". That's why it says 29.97. If you were to change the Field Operation to "Forced Film", it'll say 23.976fps.
When it says NTSC/Interlaced with no percentage given it means there's no pure film at all - no progressive 23.976fps with pulldown. Therefore it could be pure interlaced video, hard telecined video (film already telecined and encoded as interlaced), or something else such as field-blended video from a PAL source. Only further inspection of the raw frames and fields will tell you what it is and how to treat it.
Sources needing an IVTC show as you described, but that's only one kind of video that might be NTSC/Interlaced. Make the D2V using "Honor Pulldown Flags" and make a basic AviSynth script with no filtering at all. If it shows the telltale 3 progressive frames and 2 interlaced frames in every 5 frame cycle, then it can be IVTC'd.
If that doesn't help, upload a small 10 second piece of the source somewhere, a piece with motion, and we can have a look. -
Hi,
Thanks for replying. After some further research i did find some that said it might be hard telecined (so i then proceeded to continue - i made the d2v file with honouring pulldown option set - i then used decomb in gknot to ivtc with the following options in the avs:
Code:# IVTC #Telecide(order=1,guide=1).Decimate() # or use #IVTC(44,11,95) #GreedyHMA(1,0,4,0,0,0,0,0) Telecide(order=0) Decimate(cycle=5) # DEINTERLACING (1) #FieldDeinterlace() FieldDeinterlace(blend=false) #TomsMoComp(1,5,1)
Ive uploaded a 20 second clip here: http://rapidshare.com/files/268642011/sample.mpg.html
Also, by basic avisynth script do u mean something like:
Code:LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll") LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll") mpeg2source("C:\sample.d2v") LanczosResize(624,352) # DENOISING: choose one combination (or none) Undot()
-
No, I meant:
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\U nDot.dll")
mpeg2source("C:\sample.d2v")
I'm getting the sample now...
If you do IVTC, do not also turn on FieldDeinterlace afterwards. Telecide has a conditional deinterlacer built in. It deinterlaces any frames still interlaced after being field matched, although it usually needs to be tweaked for best performance. By adding another deinterlacer afterwards, one that deinterlaces everything, you'll be degrading the already IVTC'd image. -
ah right,
well i think i see what you mean now, i looking at the clip it does appear to be 3 progressive frames then 2 interlaced (3 frames that are smooth, then 2 frames that have lines across
So im assuming then that means it is hard telecined and interlaced - which means using the above script with ivtc with decomb was correct? -
Yep, it's a prime candidate for an IVTC:
# IVTC
#Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)
Telecide(order=0)
Decimate(cycle=5)
# DEINTERLACING (1)
#FieldDeinterlace()
#FieldDeinterlace(blend=false)#do not also use this
#TomsMoComp(1,5,1) -
Is the Field Deinterlace not required to deinterlace the clip?
Edit: - ok just read more - so i guess since the extra frame is being removed, the frames go back to normal - so then there wont be any interlace left after ivtc has occurred. Question then is, does having the fielddeinterlace as i had it above have any effect at all - i.e during the encoding process would it do anything - or because theres no interlace its equivelant to it being commented?
Also, if this happened to be a case where it werent 3Progressinve 2Interlaced - would this mean that no IVTC was needed at all? -
Originally Posted by onesikgypo
Originally Posted by onesikgypo
Originally Posted by onesikgypo
Similar Threads
-
DGIndex says 100% Video, but MeGUI Avisynth analysis says Source Type Film
By Simcut in forum DVD RippingReplies: 11Last Post: 9th Mar 2012, 16:10 -
is it possible to ivtc a 29fps ntsc source to 25fps xvid with gnot?
By iamtehsux in forum Newbie / General discussionsReplies: 65Last Post: 28th Dec 2010, 08:22 -
How do I deinterlace? How do I IVTC? How do I use DGIndex?
By rocky12 in forum Newbie / General discussionsReplies: 71Last Post: 17th May 2009, 21:41 -
DGIndex Force Film vs IVTC
By alcOre in forum Newbie / General discussionsReplies: 4Last Post: 22nd Feb 2009, 02:25 -
IVTC'ing NTSC source with random pattern
By miggeth in forum Video ConversionReplies: 28Last Post: 23rd Jun 2008, 03:12