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 传输流中有一些 h264 视频,我怀疑在视频中的某些点它会从 1080i/50Hz 切换到 1080p/25Hz。我想证明使用一些视频分析工具。ffmpeg(或类似的)可以打印出如此详细的解码信息吗?我已经尝试过 ffmpeg 设置“-loglevel debug”,但它不会打印有关实际解码的更多信息。
ffprobe是一个更简单的解决方案,并且包含在 FFmpeg 中:
ffprobe
$ ffprobe -show_frames -i input.mp4
对其进行排序。最后,我将一些 printfs 放入 ffmpeg 源代码中以获取我需要的信息。