I can't tell if this is a Bad Pal (25)to NTSC(29.97) conversion (interlaced).
Or some funky Film Hybrid,
AutoGK says the clip is FILM.
But playback seems jerky and when using Assumefps (25) I get blended frames.
Can someone please help and post their script so I can figure this out.
Thanks in advance.
http://www.mediafire.com/?sharekey=2293c475ea178c8841446e35a78dc463e04e75f6e8ebb871
+ Reply to Thread
Results 1 to 13 of 13
-
-
I'll try it, but does that panning scene look any different.
Thanks for your help -
It still looks jumpy to me.
Good job getting rid of the interlacing though. -
poisondeathray is correct; it just needs a standard IVTC.
...and when using Assumefps (25) I get blended frames -
There's still some issues using this script.
I noticed playing it back with virtualdub that the frame rate seemed fine.
I'm importing this into Tmpgenc and it plays back jumpy.
That's not the real problem I can use something else to re-encode it.
Try using that script using this sample here.
It gets all jagged and crazy during this scene.
(FILE is SAMPLE.VOB)
http://www.mediafire.com/?sharekey=edb7a9bee14c9aea1bee9a6e9edd9c76e04e75f6e8ebb871 -
It's Sample.vob.
http://www.mediafire.com/?kfywzz0zmoo
That's the part that gets crazy witht he script used above.
ANy idea what else would work so it doesn't get like that. -
Originally Posted by pureimpure
TFM().TDecimate() delivered smooth results with both VirtualDub and TMPGEnc Plus (23.976 fps with pulldown flags). Why the talk of 25 fps? Are you making a PAL DVD for some reason?
http://www.mediafire.com/?sharekey=edb7a9bee14c9aead9d5c56d04dfa8b089f6be9e8c2d2560c95965eaa7bc68bc -
Stupid Mediafire.
Here's Sample.vob (correct link)
http://www.mediafire.com/?sharekey=edb7a9bee14c9aea1bee9a6e9edd9c76e04e75f6e8ebb871
I thought maybe it was a PAL to NTSC conversion. -
Are you talking about the moire artifacts in the windows? Unfortunately, TFM() has problems with that type of source. A manual IVTC will work:
Code:MPEG2Source("sample.d2v") AssumeTFF() SeparateFields() SelectEvery(10, 0,1, 2,3,5,6,8,9) Weave()
That probably won't work over the entire movie because there are likely to be breaks in the telecine pattern now and then. -
The problem is mostly (but not entirely) that those thin horizontal lines of the blinds are seen as residual interlacing by TFM, and the deinterlacer kicks in. It'll do a much better job (but still not perfect) by either raising the CThresh or (better) turning off the postprocessor:
TFM(PP=0)
TDecimate()
Interestingly, Decomb does a much better (and nearly perfect) job on that passage, also with the postprocessor turned off:
AssumeTFF()
Telecide(Guide=1,Post=0)
Decimate()
Or, you can leave the postprocessor on but tweak the VThresh so it's not as sensitive. Raising it to 70 from the default 50 seems to do the trick:
AssumeTFF()
Telecide(Guide=1,VThresh=70)
Decimate()
Similar Threads
-
1080i HDTV captures and avisynth deinterlace filters
By FTW in forum Video ConversionReplies: 3Last Post: 20th Aug 2010, 19:47 -
Which Avisynth deinterlace plugin provides the best result?
By Mdoodm1000 in forum Video ConversionReplies: 7Last Post: 21st Jun 2010, 18:41 -
Deinterlace?
By ZedsDead in forum Video ConversionReplies: 6Last Post: 14th Mar 2010, 23:21 -
what's the avisynth deinterlace alternative for ffdshow's ?
By cobalt in forum Newbie / General discussionsReplies: 12Last Post: 24th Sep 2009, 09:34 -
Alparysoft Deinterlace for AVISynth problem
By _migz_ in forum Video ConversionReplies: 5Last Post: 3rd Aug 2007, 07:54