Skip to content

v0.1.0

Compare
Choose a tag to compare
@mattico mattico released this 20 Oct 20:32
· 14 commits to master since this release

Initial release.

Example ffmpeg commands for converting between images and video:

Video to images:
ffmpeg -i video.mp4 -vf fps=1 frame_%04d.png
Adjust fps= to change how often frames are saved from the video.

Basic images to video:
ffmpeg -i frame%04d.png out.mp4

Recommended images to video settings:
ffmpeg -i frame%04d.png -framerate 60 -c:v libx264 -r 60 -pix_fmt yuv420p -preset slow -crf 19 out.mp4