I have NTSC 29.97i DVD video that I have to convert to PAL 25i DVD. The problem is that this video is in my opinion originally recorded at 29.97 and the Pulldown method wont work. Any suggestions? Does anyone of you guys has a workflow how to do this conversion?
I tried some AviSynth scripts but they all failed, I tried to remove pulldown, but obviously there is no pulldown. Help please...
+ Reply to Thread
Results 1 to 11 of 11
-
-
Most PAL DVD players and TV can play and display NTSC discs so you don't really need to convert. But if you must, and the source is really 30i, the best way is to perform a smart bob to 59.94 frames per second, decimate to 50 frames per second, then re-interlace to 25i.
Code:Mpeg2Source() QTGMC() ChangeFPS(50) SeparateFields() SelectEvery(4,0,3) Weave()
-
-
And One more question...
Does 29.97i to 25i conversion affects runtime? Is it recommended to change runtime or not? -
-
QTGMC() is the best smart bobber but it is very slow (and a bit of a pain get set up since it requires som many other filters). Try using Yadif(mode=1) instead. It's much faster, though not as good.
-
Yeah... I just faced how slow is QTGMC. I will try the other one... Thanks again!
-
You can use a faster preset for QTGMC; the default is "slower"
eg. QTGMC(preset="veryfast")
It's still slower than yadif, but still better quality -
Don't forget to do the resize for PAL while you're at it. Right after QTGMC is a good place.
Similar Threads
-
Pls help! Best way to convert NTSC VHS (captured using PAL VCR) to NTSC DVD
By rairjordan in forum Capturing and VCRReplies: 33Last Post: 28th Nov 2013, 11:33 -
when Pal dvd has correct Ntsc audio (Pal>Ntsc conver)
By spiritgumm in forum Video ConversionReplies: 15Last Post: 13th Oct 2011, 12:57 -
PAL to NTSC, NTSC to PAL framerate conversion?
By Baldrick in forum Video ConversionReplies: 44Last Post: 5th Dec 2009, 23:31 -
NTSC to PAL, PAL to NTSC framerate conversion?
By Baldrick in forum Video ConversionReplies: 23Last Post: 23rd Apr 2008, 11:19 -
NTSC-PAL-NTSC (25-23.976+pulldown) and audio sync problem - related?
By ecc in forum Video ConversionReplies: 14Last Post: 14th Nov 2007, 11:34