FFmpeg工具

官网

B站入门教程  

FFmpeg 视频处理入门教程

 相关文章

https://www.jianshu.com/p/64c05ecf518b

https://www.jianshu.com/p/2b609afb9800

https://blog.csdn.net/Chanssl/article/details/83050959

https://www.jianshu.com/p/3c8c4a892f3c

命令

截取视频中1~3秒的内容输出为gif
ffmpeg -i D:Dataffmpegv1.mp4 -ss 1 -to 3 -s 640x320 -r 15 out.gif
ffmpeg -i ss3.mp4 -ss 0.0 -to 1.5 -vf scale=300:-1 -gifflags +transdiff -pix_fmt rgb8 -r 10 ss3.gif

参数

-r 帧率
-y 覆盖文件

 

注重细节——关注底层——注重细节——关注底层——注重细节——关注底层——注重细节——关注底层——注重细节——关注底层
原文地址:https://www.cnblogs.com/PJG20/p/12549930.html