Skip to content

Instantly share code, notes, and snippets.

@gservat
gservat / mov_to_gif.sh
Last active August 16, 2016 13:19 — forked from zmdominguez/mov_to_gif.sh
Converts a .mov to an animated .gif.Requires ffmpeg and gifsicle.
#!/bin/bash
for i in "$@"
do
case $i in
-f=*|--file=*)
FILENAME="${i#*=}"
;;
-o=*|--out=*)
OUTPUT="${i#*=}"