5

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.

gimmeamilk
  • 2,016
  • 5
  • 24
  • 36

2 Answers2

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