/ Published in: Bash
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.
Expand |
Embed | Plain Text
ffmpeg -f image2 -r 30 -i ImageName%04d.png -sameq video.mp4
You need to login to post a comment.
