Skip to content

Instantly share code, notes, and snippets.

@zizhengwu
Created June 1, 2016 14:51
Show Gist options
  • Save zizhengwu/6ca603651df5ea92ce7336858237f21b to your computer and use it in GitHub Desktop.
Save zizhengwu/6ca603651df5ea92ce7336858237f21b to your computer and use it in GitHub Desktop.
#!/bin/sh
palette="/tmp/palette.png"
filters="fps=10,scale=600:-1:flags=bicubic"
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