diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-04-13 08:31:21 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-04-13 08:31:21 +0200 |
commit | 168ea4b5641eb08ef24c70e94e332aaabf7e2e81 (patch) | |
tree | 0b24f7340be7e671c61d9d4f3f3c699349e2c235 /src/app/ssd1306-bad-apple/convert | |
parent | b650f2ac498df4ba18d23ad7f02637f40917c28e (diff) |
add ssd1306 bad apple skeleton
Diffstat (limited to 'src/app/ssd1306-bad-apple/convert')
-rwxr-xr-x | src/app/ssd1306-bad-apple/convert | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/app/ssd1306-bad-apple/convert b/src/app/ssd1306-bad-apple/convert new file mode 100755 index 0000000..f0118dd --- /dev/null +++ b/src/app/ssd1306-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 128x64 -threshold 50% -- tmp/*.png + +echo "const unsigned char frame_rate = $3;" > frames.cc +./frames-to-cc tmp/*.png >> frames.cc + +rm -rf tmp |