VideoHelp Forum




+ Reply to Thread
Results 1 to 11 of 11
  1. 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...
    Quote Quote  
  2. 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()
    Quote Quote  
  3. Originally Posted by jagabo View Post
    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()
    Thanks a lot! I really need to convert this video. I will try this script immediately...
    Quote Quote  
  4. And One more question...

    Does 29.97i to 25i conversion affects runtime? Is it recommended to change runtime or not?
    Quote Quote  
  5. Originally Posted by bgtrix View Post
    Does 29.97i to 25i conversion affects runtime?
    The method I outlined does not change the running time.
    Quote Quote  
  6. OK, I'm on my way... just downloaded required AVS plugins
    Quote Quote  
  7. 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.
    Quote Quote  
  8. Yeah... I just faced how slow is QTGMC. I will try the other one... Thanks again!
    Quote Quote  
  9. 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
    Quote Quote  
  10. Don't forget to do the resize for PAL while you're at it. Right after QTGMC is a good place.
    Quote Quote  
  11. Ah yes. I forgot that step!
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!