Convert image sequence to video


/ Published in: Bash
Save to your folder(s)

This would convert images at 30fps to a mp4 video, with sequence titles:
ImageName0000.png, ImageName0001.png, etc.

You could use -r 1/5 to use one frame every five seconds.


Copy this code and paste it in your HTML
  1. ffmpeg -f image2 -r 30 -i ImageName%04d.png -sameq video.mp4

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.