Created
September 14, 2018 02:43
-
-
Save lidedongsn/2845c79069072ac30162ed00e414195b to your computer and use it in GitHub Desktop.
截取视频部分保存为gif(高清), ./video2gif.sh <videofile> <out.gif>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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