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
+ Reply to Thread
Results 1 to 4 of 4
-
-
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.
Similar Threads
-
Convert 24p .mov to interlaced 25fps PAL
By Cotswold in forum Video ConversionReplies: 6Last Post: 25th Mar 2012, 15:50 -
720p conversion of PAL 25fps to NTSC 59.94fps using Handbrake?
By texas1 in forum Video ConversionReplies: 7Last Post: 29th Jan 2012, 11:06 -
HDTV 720p 50 fps -> SDTV PAL 576i/p 25fps
By joosty in forum Video ConversionReplies: 22Last Post: 7th Nov 2010, 22:33 -
converting PAL (25fps) to NTSC(23.97fps) with audio
By drew24 in forum MacReplies: 6Last Post: 21st Dec 2009, 09:45 -
PAL speed-up: 24fps to 25fps video, how?
By JoachimS in forum MacReplies: 16Last Post: 26th Oct 2007, 14:39