FFmpeg: Difference between revisions

36 bytes added ,  17 January 2020
Line 23: Line 23:
Assuming 60 images per second and you want a 30 fps video.
Assuming 60 images per second and you want a 30 fps video.
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# Make sure -framerate is before -i
ffmpeg -framerate 60 -i image-%03d.png -r 30 video.mp4
ffmpeg -framerate 60 -i image-%03d.png -r 30 video.mp4
</syntaxhighlight>
</syntaxhighlight>