Skip to content

Instantly share code, notes, and snippets.

@MartinMSPedersen
Created January 2, 2022 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MartinMSPedersen/513171d9c07941f6ce6a2e75850b238d to your computer and use it in GitHub Desktop.
Save MartinMSPedersen/513171d9c07941f6ce6a2e75850b238d to your computer and use it in GitHub Desktop.
Animated gif
for f in *jpg
do
convert "$f" -resize '640x480' -background black -gravity center -extent 640x480 "$f"
done
convert -delay 300 -loop 0 *jpg output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment