Skip to content

Instantly share code, notes, and snippets.

@bobishh
Created May 17, 2017 11:48
Show Gist options
  • Select an option

  • Save bobishh/350fefb4e8db999c96570a5095fa0ccb to your computer and use it in GitHub Desktop.

Select an option

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