VideoHelp Forum




+ Reply to Thread
Results 1 to 4 of 4
  1. Member
    Join Date
    May 2003
    Location
    Oz
    Search Comp PM
    How should I go about converting a 12.497fps AVI file to 25fps PAL spec MPEG? I only need help with the creation of the extra frames to get it from 12.497 up to 25fps. I know how to do everything else. What's the best quality method of basically doubling the frames? If AviSynth, then which command?

    Cheers
    Quote Quote  
  2. Member Alex_ander's Avatar
    Join Date
    Oct 2006
    Location
    Russian Federation
    Search Comp PM
    MVTools plugin, MVFlowFPS function:
    http://avisynth.org.ru/mvtools/mvtools.html

    LoadPlugin("...\mvtools.dll")
    source=AviSource("...\video.avi")
    backward_vec = source.MVAnalyse(isb = true, truemotion=true, pel=2, idx=1)
    forward_vec = source.MVAnalyse(isb = false, truemotion=true, pel=2, idx=1)
    source.MVFlowFps(backward_vec, forward_vec, num=25, den=1, ml=100, idx=1)

    Some types of footage may give artifacts in new frames.
    Quote Quote  
  3. Or fast and easy:

    ChangeFPS(25)
    Quote Quote  
  4. Member
    Join Date
    May 2003
    Location
    Oz
    Search Comp PM
    Thanks, that does the trick
    Quote Quote  



Similar Threads

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