dither4/video-rickroll/video.sh
2024-08-31 09:30:10 -07:00

15 lines
279 B
Bash

set -e
for frame in frames/rickroll-[0-9][0-9][0-9][0-9][0-9].png
do
n="${frame#frames/rickroll-}"
n="${n%.png}"
out="frames/dither-${n}"
last="${n:0-1}"
node ../dither-image.js "$frame" "$out" &
if (( last == 9 ))
then
wait
fi
done
wait