视频截成图片.

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2019-12-10 11:33:53 +08:00
parent e81f5b4f8d
commit 03cbc5e80b
1 changed files with 11 additions and 0 deletions

View File

@ -58,3 +58,14 @@ ffmpeg -i <input file> -vcodec copy -an <output file>
# 分离音频流 # 分离音频流
ffmpeg -i <input file> -acodec copy -vn <output file> ffmpeg -i <input file> -acodec copy -vn <output file>
``` ```
## 视频截成图片
```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 <input media> -ss <start time> -f <format> -r <rate> <output>
```