-
ffmpeg frame rate and jpg to movie
so i have successfully made stacks of images into movies with ffmpeg.
ffmpeg -i frame%04d.jpg out.mp4now i often like timelapse movies to be a little lower framerate so if i instead do
ffmpeg -i frame%04d.jpg -r 10 out.mp4
should i not expect my movie to be 2.5 times as long? since -r 25 is the default frame rate setting?but i’m not finding this to be the case and wondering why. it seems ffmpeg drops frames when i reduce hte output framerate. i might expect that for movie conversion but i wouldn’t expect that for converting a stack of frames.
actually i’ve been using this someftware for a couple years on various different machines and this is the first time i noticed this so i’m not sure if it is version specific or codec specific?anybody else have experience with this?
thanks,
dan