Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using ffmpeg (or similar) to print detailed h264 information

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.

like image 571
gimmeamilk Avatar asked Oct 26 '12 12:10

gimmeamilk


1 Answers

ffprobe is a far easier solution and is included with FFmpeg:

$ ffprobe -show_frames -i input.mp4
like image 65
llogan Avatar answered Sep 26 '22 15:09

llogan