I have some h264 video in mpeg transport stream, and I suspect at certain points in the video it switches from 1080i/50Hz to 1080p/25Hz. I'd like to prove that using some video analysis tool. Can ffmpeg (or similar) print out such detailed decoding info? I've tried ffmpeg setting "-loglevel debug" but it prints no more info about the actual decoding.
Asked
Active
Viewed 5,296 times
2 Answers
9
ffprobe
is a far easier solution and is included with FFmpeg:
$ ffprobe -show_frames -i input.mp4

llogan
- 121,796
- 28
- 232
- 243
0
Sorted it. In the end I put a few printfs into ffmpeg source to get the info I needed.

gimmeamilk
- 2,016
- 5
- 24
- 36
-
1vlc -vv (ultra verbose) is an invaluable tool for these kind of situations – arash kordi Oct 26 '12 at 15:48
-
1@arashkordi VLC uses FFmpeg so using ffprobe is still better. – Timothy Gu Sep 22 '14 at 22:54