Skip to content

Instantly share code, notes, and snippets.

@billautomata
Created August 23, 2015 01:30
Show Gist options
  • Save billautomata/a03d3da33b5b1748c75a to your computer and use it in GitHub Desktop.
Save billautomata/a03d3da33b5b1748c75a to your computer and use it in GitHub Desktop.
hd gif
#!/bin/sh
palette="palette.png"
filters="fps=5,scale=720:-1:flags=lanczos"
# ffmpeg -start_number 33736 -i G00%05d.JPG -r 3 -resize 50% output.gif
ffmpeg -v warning -start_number 33736 -i G00%05d.JPG -vf "$filters,palettegen" -y $palette
ffmpeg -v warning -start_number 33736 -i G00%05d.JPG -i $palette -lavfi "$filters [x]; [x][1:v] paletteuse" -y output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment