Activity › Forums › Compression Techniques › HANDY TIP: Using FFprobe for stream analysis
-
HANDY TIP: Using FFprobe for stream analysis
Milivoj Ivkovic replied 8 years, 6 months ago 11 Members · 21 Replies
-
Milivoj Ivkovic
November 16, 2017 at 9:44 pmNote that you can take advantage of the .csv (or json) outputs provided by ffprobe. They make parsing much easier.
For example, I use this to analyze the bitrate, saving the output into a .csv file for further parsing with Perl, Excel, a graphing tool or whatever:
ffprobe -select_streams V -show_entries frame=pict_type,pkt_size,pkt_pts_time -of csv "$INPUTFILE" > "$INPUTFILE.ffprobe.csv"
Reply to this Discussion! Login or Sign Up