FFMPEG Command

2016-02-28 AllanChan 更多博文 » 博客 » GitHub »

原文链接 http://allanhost.com/tag/2016/02/28/FFMPEG-%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4.html
注:以下为加速网络访问所做的原文缓存,经过重新格式化,可能存在格式方面的问题,或偶有遗漏信息,请以原文为准。


缩小视频一半

ffmpeg -i input -vf scale=iw/2:-1 output

视频指定大小

ffmpeg -i a.mov -vf scale=853:480 out.mp4

视频变成图片

ffmpeg -i cut.mp4 -r 0.25 output_%04d.png

视频剪切

ffmpeg -i movie.mp4 -ss 00:00:01 -t 00:00:22 -async 1 cut.mp4