Skip to content

Instantly share code, notes, and snippets.

@claygregory
claygregory / timelapse.sh
Created July 8, 2017 01:33
4K timelapse from photos using ffmpeg
#!/bin/bash
if [[ -z "$1" || -z "$2" ]]; then
echo "Usage: timelapse input/*.jpg output.mp4";
exit;
fi
mkdir "./working"
output="${!#}"