parent
e81f5b4f8d
commit
03cbc5e80b
|
@ -58,3 +58,14 @@ ffmpeg -i <input file> -vcodec copy -an <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>
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue