Created
September 8, 2012 12:03
-
-
Save kevinkirkup/3674231 to your computer and use it in GitHub Desktop.
FFMPEGx - Output Packet information from a TS File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffprobe -i <input file> -sexagesimal -show_packets -print_format compact > output.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-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.