Last active
March 1, 2018 23:19
-
-
Save ikonst/4150662c1b64e92f781358f6f74207a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
# Converts a Quicktime movie to a GIF aniamtion. | |
# Useful for screen recordings. | |
# Preliminary step with palette required to make it look good | |
# without dithering artifacts. | |
FPS=10 | |
PALETTE=$(mktemp).png | |
MOV=$1 | |
[[ -n "$GIF" ]] || GIF="${MOV%.*}".gif | |
[[ -n "$MOV" ]] || { | |
echo "Syntax: $0 [mov] [gif]" | |
exit 1 | |
} | |
which ffmpeg || { | |
echo "Error: ffmpeg missing" | |
exit 1 | |
} | |
ffmpeg -i $MOV -vf palettegen $PALETTE | |
ffmpeg -i $MOV -i $PALETTE -r $FPS -lavfi "scale=320:-1 [x]; [x][1:v] paletteuse" $GIF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment