Guest User

Untitled

a guest
Dec 11th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function mov2gif() {
  2. name=`basename -s .mov $1`
  3. echo "$1 => $name.gif"
  4. ffmpeg -i "$1" -vf scale=980:-1 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=2 --delay=6 > "$name.gif"
  5. }
Add Comment
Please, Sign In to add comment