I've been using the Pulldown method illustrated here to do PAL to NTSC conversions, but I've got a few questions.
First, what would happen if I demuxed the DVD, and used DGPulldown on the original m2v file without re-encoding? I'm guessing it won't work because the video's the wrong size (720x576 @ 29.97 FPS). Muxman doesn't appear to accept it anyway.
Second, the source appears to be interlaced. Does it have to be deinterlaced or can I just leave it alone?
Please don't suggest getting a PAL capable DVD player. The whole point of me doing this is to try to make discs that will play on other people's players.
+ Reply to Thread
Results 1 to 12 of 12
-
-
1) Don't know what would happen.
2) You don't HAVE to deinterlace. To deinterlace requires you to re-encode and at that point you might as well just do a proper conversion instead of trying the shortcut method you are using to avoid re-encoding.
3) There are no guarantees that this method will produce a disc that all NTSC DVD players can play. Reports are that it works most of the time, but I'm sure players exist that won't touch such discs. -
If your source is really interlaced (as opposed to progressive frames encoded in interlaced mode) you have to deinterlace before using the DgPulldown method.
-
Do you see comb artifacts when there is motion? If not, the frames are progressive. If you do see comb artifacts apply a bob filter. Is each field different? If so you have interlaced video. If each pair of files is the same you have out of phase PAL and can restore the progressive frames.
-
I know there are comb artifacts. Then I'm a bit lost.
I've loaded the demuxed m2v file into VirtualDubMod, and tried applying a Bob filter. I'm not really sure what settings to use or what to look for next.
Sorry, I'm a bit of a n00b. I've tried this stuff before, but I was dealing with Progressive video before...and then they finally released U.S. versions. This isn't a very popular show. It's Mortal Kombat Conquest. -
Try VirtualDub and its Bob Doubler filter. Or, if you know how to use AviSynth, you can apply a simple bob:
Mpeg2Source("filename.d2v")
AssumeTFF() # or AssumeBFF()
Bob() -
Sorry I got busy doing other things for a bit.
I tried messing with it for a bit, but I'm still not sure what I'm supposed to be looking for. I believe there's a sample attached to this post (assuming I even managed to upload the right thing). -
That video is out of phase PAL. It was originally progressive, broadcast as interlaced, then recorded with the opposite field order. So each frame contains fields from two different frames:
progressive frames: 1 2 3 4...
broadcast interlaced: 1b 1t 2b 2t 3b 3t 4b 4t... (bottom field first)
captured out of phase: 1t+2b 2t+3b 3t+4b 4t+5b... (top field first)
You can easily fix that in AviSynth:
Mpeg2Source()
AssumeTFF()
SeparateFields()
Trim(1,0) #discard the first field
Weave()
Mpeg2Source()
AssumeTFF()
TFM()Last edited by jagabo; 30th Mar 2011 at 20:52.
-
-
-
Awesome! Thanks very much. I was way out of my depth.
I think I'm finally starting to understand some of it now though.
Similar Threads
-
Pal 25i to Ntsc question
By spiritgumm in forum Video ConversionReplies: 17Last Post: 15th Dec 2011, 18:16 -
PAL vs NTSC Question
By cottage in forum Video ConversionReplies: 26Last Post: 6th Jul 2009, 09:53 -
FAVC Pal-Ntsc conversion question
By spiritgumm in forum Video ConversionReplies: 4Last Post: 24th Feb 2009, 10:12 -
Pal/Ntsc DVD Recorder question
By ArtieEngh in forum Newbie / General discussionsReplies: 1Last Post: 19th Dec 2008, 10:18 -
Total Noob Question - NTSC / PAL
By fredfillis in forum DVB / IPTVReplies: 15Last Post: 10th Jan 2008, 05:16