Feature #882
Convert MP4 Video into JPEG Images
Description
This is a simple method for converting an MP4 video into multiple JPEG images of each frame. This was done on Arch Linux, but any machine running ffmpeg will work.
- Convert MP4 to JPEG:
ffmpeg -i input.mp4 -qscale:v 2 output_%03d.jpg
NOTE: Change%03d
to a higher number for larger frame counts.