Skip to content

Instantly share code, notes, and snippets.

@lidedongsn
Created September 14, 2018 02:43
Show Gist options
  • Save lidedongsn/2845c79069072ac30162ed00e414195b to your computer and use it in GitHub Desktop.
Save lidedongsn/2845c79069072ac30162ed00e414195b to your computer and use it in GitHub Desktop.
截取视频部分保存为gif(高清), ./video2gif.sh <videofile> <out.gif>
#!/bin/sh
start_time=00:48
duration=5
palette="/tmp/palette.png"
filters="fps=5,scale=240:-1:flags=lanczos,crop=240:240:0:50"
ffmpeg -v warning -ss $start_time -t $duration -i $1 -vf "$filters,palettegen" -y $palette
ffmpeg -v warning -ss $start_time -t $duration -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