Skip to content

Instantly share code, notes, and snippets.

@r6m
Created February 25, 2017 13:36
Show Gist options
  • Save r6m/970495f9520471101bbf6236d458811c to your computer and use it in GitHub Desktop.
Save r6m/970495f9520471101bbf6236d458811c to your computer and use it in GitHub Desktop.
convert images into video using ffmpeg
ffmpeg -i input.flv -vf fps=1 out%04d.png
# fps=1 (1 image per second)
# fps=2 (2 image per second)
# fps=1/60 (1 image per minute)
# fps=1/600 (1 image per 10 minutes)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment