Skip to content

Instantly share code, notes, and snippets.

@prashantwosti
Forked from rock3r/giffify.py
Last active August 29, 2015 14:24
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 prashantwosti/2400556456fc21ae7ec0 to your computer and use it in GitHub Desktop.
Save prashantwosti/2400556456fc21ae7ec0 to your computer and use it in GitHub Desktop.
#!/bin/sh
# License for any modification to the original (linked below):
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
# can do whatever you want with this stuff. If we meet some day, and you think
# this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
# ----------------------------------------------------------------------------
#
# Based upon http://blog.pkh.me/p/21-high-quality-gif-with-ffmpeg.html
# Usage: giffify.sh inputFile outputFile [targetHeight] [targetFps]
# Defaults: defaultHeight = 500px, targetFps = 15
inputFile="$1"
outputFile="$2"
desiredHeight=$3
if [[ -z $desiredHeight ]]; then
desiredHeight=500
fi
fps=$4
if [[ -z $fps ]]; then
fps=15
fi
palette="palette.png"
filters="fps=$fps,scale=-1:$desiredHeight:flags=lanczos"
ffmpeg -v warning -i $inputFile -vf "$filters,palettegen" -y $palette
if [[ -f $palette ]]; then
ffmpeg -v warning -i $inputFile -i $palette -lavfi "$filters [x]; [x][1:v] paletteuse" -y $outputFile
rm $palette
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment