View Single Post
Old 29th August 2013, 22:07   #6  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
You know this a 4 year old thread, right?

There are AviSynth import plugins for Premiere(not sure if this one is still up-to-date) and virtual file apps, so you could use an AviSynth source filter that does VFR->CFR, e.g.:
Code:
a=ffaudiosource("source.mkv")
v=ffvideosource("source.mkv", fpsnum=24000, fpsden=1001)
AudioDub(v, a)
fpsnum and fpsden need to be set according to the target frame rate. Note that 100% lossless conversion from VFR to CFR is not possible except for a common multiple (e.g. 120 fps CFR for 24 fps and 30 fps hybrid VFR).

Last edited by sneaker_ger; 29th August 2013 at 22:18.
sneaker_ger is offline   Reply With Quote