The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Deshake a sequence of images Supply remapping parameters and the location of a reference photo using a Hugin PTO project Bruno Postle <bruno@postle.net>, June 2018

Extract JPEG frames from an existing video like so: ffmpeg -i webcam.mp4 webcam%08d.jpg

Create a video file from a sequence of JPEG files like so: rm -f frames.txt; for FILE in *.jpg; do echo "file '$FILE'" >> frames.txt; done ffmpeg -f concat -i frames.txt output.mp4