This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Create a rotating, hue-cycling figure using Distort SRT transformations | |
# | |
# Usage: INPUT_FILENAME=Downloads/turkey_5feec0.png OUTPUT_FILENAME=party_turkey.gif party.sh | |
set -xeo pipefail | |
command="convert -dispose previous -delay 3 $INPUT_FILENAME -virtual-pixel Transparent -scale 120%" |