View Full Version : AVI 8fps > 24fps
zeronegative
27th February 2003, 21:59
I have an AVI in 8fps (converted from SWF), but want it at 24fps to make it into a DVD. I know there's a function in AviSynth called DuplicateFrame, but if I want to do this for an entire AVI file, how should I design the AVS?
To make it clear, I want every single frame repeated twice (ABC -> AAABBBCCC). If there's a better way, please tell me.
moko
27th February 2003, 22:20
ConvertFPS(24) will work and every frame should appear three times in a row. Just a warning that the playback would be jerky and not very smooth so do this only if you have to. Just a note that 24 fps is not DVD compatible, so after the conversion make sure it's 25 or 23.976 fps (with pulldown of course, use AssumeFPS()). in this case you should also change the length of the audio.
hakko504
28th February 2003, 12:59
Convertfps will blend adjacent frames to create the new ones and you can go directly to 23.976 or 25fps if you use that. If you want duplicates you should use SelectEvery(1,0,0,0).AssumeFPS(23.976) instead.
Xesdeeni
28th February 2003, 14:21
Why not just ChangeFPS(23.976)?
Xesdeeni
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.