mirror of
https://github.com/option8/greenscale.git
synced 2025-01-09 12:30:52 +00:00
11 lines
276 B
Bash
11 lines
276 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
convert animation.gif frame%05d.gif
|
||
|
|
||
|
convert frame*.gif -compress none -scale 56x100% -scale 40x48\! -colorspace Gray -colors 16 -depth 8 -auto-level -evaluate divide 17 %d.gray
|
||
|
|
||
|
for file in *.gray
|
||
|
do
|
||
|
cat "$file" | python -u ../greenscale.py >> output.bin
|
||
|
done
|