Skip to content

Instantly share code, notes, and snippets.

@bobishh
Created May 17, 2017 11:48
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 bobishh/350fefb4e8db999c96570a5095fa0ccb to your computer and use it in GitHub Desktop.
Save bobishh/350fefb4e8db999c96570a5095fa0ccb to your computer and use it in GitHub Desktop.
Create gif from jpeg via imagemagick
#!/bin/bash
delay=$1
resize=$2
output=$3
file_list=$4
convert -delay $delay -resize $resize $file_list -loop 0 $output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment