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.
我想提取视频文件的信息以获取其 I/P/B 帧的计数。如何在ffmpeg中做到这一点?或者我应该使用 libavformat 和 libavcodec 进行编程吗?非常感谢!
在命令行上使用ffprobe -show_frames input_file. 您可以解析此输入以获取帧类型信息。
ffprobe -show_frames input_file
你也可以做 ffprobe -show_frames inputfile | grep pict_type
ffprobe -show_frames inputfile | grep pict_type
grep 的字符串可能因您拥有的 ffprobe 版本而异。