Skip to content

Instantly share code, notes, and snippets.

@kumamotone
Created May 9, 2019 08:15
Show Gist options
  • Save kumamotone/50f81555040b2d176c864dec31230f4d to your computer and use it in GitHub Desktop.
Save kumamotone/50f81555040b2d176c864dec31230f4d to your computer and use it in GitHub Desktop.
Automation Script
for f in "$@"
do
ext=${f##*.}
if [ $ext = "mov" ]; then
osascript -e 'display notification "'$f'" with title "Gif encode start"'
/usr/local/bin/ffmpeg -i $f -filter_complex "[0:v] fps=8,scale=600:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse" $f.gif
osascript -e 'display notification "'$f'" with title "Gif encode end"'
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment