> ## Content Index
> Fetch the complete content index at: https://sgpublic.xyz/llms.txt
> Use this file to discover other available public pages before exploring further.

# ffmpeg 提取视频帧
- URL: https://sgpublic.xyz/p/2024/11/6aac9cb1810a480001533602/
- Published: 2024-11-29T05:24:32.000Z
- Updated: 2024-11-29T05:24:32.000Z
- Author: Haven Madray
- Tags: 家庭娱乐与媒体, #wp-post

提取每一帧：

```shell
ffmpeg -i input.mp4 frame%04d.png
```

每秒提取一帧：

```shell
ffmpeg -i input.mp4 -vf "fps=1" frame%04d.png
```

提取关键帧：

```shell
ffmpeg -i input.mp4 -vf "select='eq(pict_type\,I)'" -vsync vfr output_%03d.jpg
```