mirror of
https://github.com/option8/greenscale.git
synced 2025-01-08 06:29:34 +00:00
13 lines
355 B
Bash
13 lines
355 B
Bash
#!/bin/bash
|
|
|
|
convert animation.gif -coalesce frame%02d.gif
|
|
|
|
convert frame*.gif -resize 640x480 -gravity center -background white -extent 640x480 -compress none -scale 56x100% -resize 40x48\! \
|
|
-colorspace Gray -colors 16 -depth 8 -auto-level -evaluate divide 17 %02d.gray
|
|
|
|
|
|
for file in *.gray
|
|
do
|
|
cat "$file" | python -u ../greenscale.py >> data.bin
|
|
done
|