我正在根据视频创建GIF。当前,使用ffmpeg,我能够创建GIF,但是我想创建具有特定尺寸的GIF。我怎样才能做到这一点?
到目前为止我正在使用的命令:
ffprobe -v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1:nokey=1 "+filePath
ffmpeg -i " + filePath + " -ss 00 -t 05 -vcodec libx264 -an " + gifLocation + videoName
ffmpeg -i " + gifLocation + fastForwardName + " -vf scale=320:-1 -r 10 -f image2pipe -vcodec ppm - | convert -loop 0 - " + gifLocation + gifName
谢谢。