Skip to content

Instantly share code, notes, and snippets.

@zhuker
Last active April 9, 2020 17:59
Show Gist options
  • Save zhuker/390a56f7da7386eb8d2adc1bc9ecce61 to your computer and use it in GitHub Desktop.
Save zhuker/390a56f7da7386eb8d2adc1bc9ecce61 to your computer and use it in GitHub Desktop.
#!/bin/sh
palette="/tmp/palette.png"
filters="fps=15,scale=270:-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