Skip to content

Instantly share code, notes, and snippets.

@kevinkirkup
Created September 8, 2012 12:03
Show Gist options
  • Save kevinkirkup/3674231 to your computer and use it in GitHub Desktop.
Save kevinkirkup/3674231 to your computer and use it in GitHub Desktop.
FFMPEGx - Output Packet information from a TS File
ffprobe -i <input file> -sexagesimal -show_packets -print_format compact > output.log
@kevinkirkup
Copy link
Author

-sexagesimal

Option to display time in timecode format HH:MM:SS.mmmmmmm

-show_packets

Option to decode the packet data. There are also options to decode the frame data and stream data.

-print_format compact

Option to output the data on a single line.

There are a number of different output formats that can be specified including XML, json, and csv. Please refer to the documentation for information on additional output formats.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment