FFPROBE Helpful Commands
A list of helpful ffprobe commands.
- Get time stamps, duration, and frame type (inspired from here)
ffprobe -i file.ts -select_streams v -show_frames -show_entries frame=pkt_dts_time,pkt_duration_time,pict_type -of csv=p=0
- Get frame time and picture number
ffprobe -i file.ts -select_streams v -show_frames -show_entries frame=pict_type,coded_picture_number -of csv=p=0
Comments
Post a Comment