diff options
Diffstat (limited to 'src/app/sharp96-bad-apple/convert')
-rwxr-xr-x | src/app/sharp96-bad-apple/convert | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/app/sharp96-bad-apple/convert b/src/app/sharp96-bad-apple/convert new file mode 100755 index 0000000..d357faa --- /dev/null +++ b/src/app/sharp96-bad-apple/convert @@ -0,0 +1,16 @@ +#!/bin/sh + +# ./convert.sh <file> -r <frame rate> [additional ffmpeg args] + +set -eu + +mkdir -p tmp + +ffmpeg -i "$@" tmp/frame%4d.png + +parallel mogrify -resize 96x96 -threshold 50% -- tmp/*.png + +echo "const unsigned char frame_rate = $3;" > frames.cc +./frames-to-cc tmp/*.png >> frames.cc + +rm -rf tmp |