Log in

View Full Version : frame doubling


alfindlay
14th March 2003, 04:13
I have an avi movie at 12.5 frames per second. Is there a way to duplicate each frame to get 25 fps so I can convert it to svcd?

thanks for your help.

bb
14th March 2003, 07:38
You can use Avisynth to do that. Try the ChangeFPS command, or play with ConvertFPS.

Read here: http://www.avisynth.org/index.php?page=FPS

bb

alfindlay
15th March 2003, 02:47
thanks very much BB

DJ Bobo
15th March 2003, 02:52
or (always in avisynth) simply:

selectevery(1,1,1)

IanB
15th March 2003, 14:38
Originally posted by DJ Bobo
or (always in avisynth) simply:

selectevery(1,1,1) Perhaps you meant to type ;)
selectevery(1,0,0)

IanB

DJ Bobo
15th March 2003, 16:07
no, I ment (1,1,1) :D

Why would you go for (1,0,0) and not (1,1,1), they are practically the same :confused:

IanB
15th June 2003, 07:38
3 months late (but this stuff is an archive ;) )

Because (1,1,1) will lose original frame 0 from the video stream and duplicate the last frame.

Try

BlankClip(5) # frames 0 to 4
ShowFrameNumber()
SelectEvery(1,1,1)

You get 1 1 2 2 3 3 4 4 4 4 ;)

IanB