====== ffprobe - Frame Rate ====== Get the average frame rate for the first video stream. ffprobe -v error -select_streams v:0 -show_entries stream=avg_frame_rate -of default=noprint_wrappers=1:nokey=1 input.mp4 returns, for a NTSC-film video: 24000/1001 returns, for a PAL video: 25/1 **NOTE:** * Some files can contain multiple video streams. * Some streams may be variable frame rate. ----