Skip to content

Instantly share code, notes, and snippets.

@louy2
Created March 13, 2017 18:56
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 louy2/8c4f1bc43a67f561311760c6a0798fa4 to your computer and use it in GitHub Desktop.
Save louy2/8c4f1bc43a67f561311760c6a0798fa4 to your computer and use it in GitHub Desktop.
#!/bin/sh
palette="/tmp/palette.png"
filters="fps=15,scale=320:-1:flags=lanczos"
ffmpeg -v warning -i $1 -vf "$filters,palettegen" -y $palette
ffmpeg -v warning -i $1 -i $palette -lavfi "$filters [x]; [x][1:v] paletteuse" -y $2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment