From 03cbc5e80b6708950a06fc1dd83dd3cc4b0130ec Mon Sep 17 00:00:00 2001 From: "ithink.chan" Date: Tue, 10 Dec 2019 11:33:53 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=86=E9=A2=91=E6=88=AA=E6=88=90=E5=9B=BE?= =?UTF-8?q?=E7=89=87.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ithink.chan --- Software/Applications/FFMPEG/ffmpeg_的基本使用.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Software/Applications/FFMPEG/ffmpeg_的基本使用.md b/Software/Applications/FFMPEG/ffmpeg_的基本使用.md index a06898e..5a6865b 100644 --- a/Software/Applications/FFMPEG/ffmpeg_的基本使用.md +++ b/Software/Applications/FFMPEG/ffmpeg_的基本使用.md @@ -58,3 +58,14 @@ ffmpeg -i -vcodec copy -an # 分离音频流 ffmpeg -i -acodec copy -vn ``` + +## 视频截成图片 + +```sh +# -ss 指示开始时间,如 00:00:05 +# -i 指定输入文件,如 ideo.mp4 +# -f 指定文件格式,如 image2 +# -r 指定截取频率,1为每1秒截取一张,10为每100ms截取一张,0.5为每2s截取一张 +# output 为输出文件,如 out%3d.jpg,输出文件将以out001.jpg、out002.jpg等命名 +./ffmpeg -i -ss -f -r +```