Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 MPEG-4 视频中提取 I 帧和 DC 系数?
如果您只想要 I 帧,请使用 ffmpeg 提取它们。您可以使用 -vf select="eq(pict_type\,PICT_TYPE_I)" 选项仅获取 I 图片。要获得直流系数,您必须修改解码器源代码才能将其取出。我不认为你会直接找到一个工具给你。
通过使用此命令,我可以提取 I 帧
ffmpeg -i input.flv -vf "select='eq(pict_type,PICT_TYPE_I)'" -vsync vfr thumb%04d.png