Yes, it's 25 fps progressive PAL with 3:2:3:2:2 pulldown. Use TDecimate(mode=2, rate=25) to restore it to progressive frames.
+ Reply to Thread
Results 31 to 60 of 162
-
-
-
After TFM() every 6th frame is a duplicate. That indicates 25 fps was converted to 30 fps. I just assume the missing field every 500 frames to make up the difference between 29.97 fps and 30 fps.
-
There's a problem there, though, and that is TDecimate reads ahead by only 100 frames. This will lead to more mistakes than it might even if you did put on the 'M2PA=True' parameter. Quoting from the TDecimate doc:
m2PA -
Will override the default read-ahead maximum of 100 for mode 2. This will allow the
one pass mode (metrics not available from an input file) to produce the same results
as if the metrics were available.
**NOTE: the cycle size could very well be in the 1000's or 10000's, so there is the
possibility setting m2PA=true could mean the processing will stall for quite
some time (5-10 minutes or more) when a new cycle starts!!! Please check the
largest cycle size that will be used using debug=true before setting m2PA=true!
true = override the default maximum
false = don't
Default: false (bool)
TFM
TDecimate(Mode=0,Cycle=6,CycleR=1)
Then it (or 25fps) can either be encoded as-is or (preferable, in my mind), slow both the audio and video to film speed. For changing the video speed you add:
AssumeFPS(23.976)
to the script. And slow the audio to match. Of course, a case can be made that having an extra duplicate frame every 40 seconds (when encoding for 25fps when it's supposed to really be 24.975) is better than losing a unique frame every 40 seconds (when encoding at 24.975fps when it's supposed to be 25fps), but in my experience the majority of the movies I've studied (most of them field-blended) really are 24.975fps. Not all, though.
That's such a crappy-looking video, and there's so much more wrong with it over and above any decision to make it 24.975fps or 25fps.
Last edited by manono; 8th Sep 2013 at 03:35.
-
Hi!
When using TDecimate(mode=2, rate=25) I would get this error upon the film's completion:
TDecimate: mode 2 internal error (ret less than 0). Please report this to tritical ASAP!
Would that have to do with the 25fps vs 24.97?
Thank you again for your help, both jagabo and manono! -
-
Hi Folks,
Back with another one:
http://files.videohelp.com/u/183506/atermin.demuxed.m2v
Is it possible to save this one? There's some weird blurring going on. Would that be from a poor PAL/NTSC conversion?
Thanks again, Video Jedi of Videohelp!!! -
It was telecined and then blend deinterlaced. 2 of every 5 frames are blended. It's native NTSC and not PAL2NTSC. There are a couple of AviSynth filters that are supposed to be able handle this kind of thing but I couldn't get either of them to work well. Maybe someone else can provide more help.
-
That's odd. I tried both FixBlendIVTC and Srestore(omode=3) and neither worked for me. Must have done something wrong. Yours looks good, the way it's supposed to.
-
Thank's guys!! If I can ask, what was the visual indication that it was blend de-interlaced. I hope that one day I will be able to figure this stuff out on my own! Thank you again!!!!!!!
-
All I did was:
Code:Mpeg2Source("atermin.demuxed.d2v", CPU=2, Info=3) FixBlendIVTC() TDecimate()
-
Great! My only issue is that is looks to have changed the size of the image on me. It was wide, but now it's kind of "squashed". How did you avoid that?
Thank you! -
The video is 720x480 16:9 DAR (32:27 SAR). I encoded that way as h.264 in MKV. If your not getting 16:9 DAR when playing my sample video you're player isn't obeying the AR flags. If you're encoding you own videos you must tell your encoder that the source is 16:9 DAR or 32:27 SAR. Otherwise it may assume 3:2 DAR.
-
Hi Folks!
I have another one here that I think is beyond repair, but I hope I am wrong. Is it possible to get the the ghosting/blurring out of the picture? Here is the link: see post below, please
Thanks again!!!!Last edited by hizzy7; 26th Sep 2013 at 21:19.
-
It's the same one as before. At least for me it is, that cop shootout.
Edit: Still the same. -
This is it!! Sorry! http://files.videohelp.com/u/183506/VTS_01_1.demuxed.m2v
-
It's field-blended from an NTSC source (a VHS tape, it looks to me). Handle it like this:
Yadif(Mode=1)#or the better QTGMC
Srestore(Frate=23.976) -
Thanks Manono! Would you also use TFM() in the script, or is it not called for? Thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!
-
To use SRestore() effectively you need the double frame rate provided by Yadif(mode=1). TFM() doesn't have a double frame rate mode.
But I'm still seeing lots of blending after Yadif(mode=1).SRestore(frate=23.976). -
Yes, I have noticed the same. It is better, though. I am using QTGMC. Do you have any suggestions for the blending, Jagabo?
-
Last edited by jagabo; 27th Sep 2013 at 07:57.
-
That's the impression I got, too - double-blended. Maybe it was blended from a film source originally, to get to PAL, before then being field-blended to go back to NTSC. But it didn't seem to affect the unblending to get back to PAL from what he has. And I don't believe there's any way to clean up the rest. Unfortunately, hizzy comes across all kinds of lousy DVDs.
-
Similar Threads
-
Deinterlacing
By u222683 in forum EditingReplies: 35Last Post: 10th Aug 2013, 14:42 -
deinterlacing
By encodingmonkey in forum ffmpegX general discussionReplies: 5Last Post: 25th Jul 2012, 14:27 -
Deinterlacing Question
By treed68 in forum EditingReplies: 4Last Post: 9th Oct 2010, 23:25 -
Quick question on Deinterlacing 30P in 60i containers
By ayim in forum Video ConversionReplies: 5Last Post: 30th Dec 2009, 21:06 -
Hello everyone! Got a question regarding Sony Vegas, Bob deinterlacing...
By mobious in forum Video ConversionReplies: 17Last Post: 12th Sep 2009, 12:48