6

How do I find the total number of frames in a video with ffmpeg?

Utkarsh Sinha
  • 3,295
  • 4
  • 30
  • 46

2 Answers2

9

Take a look at this answer. The problem is that the exact number of frames is often not stored in metadata and can only be truly found (not estimated) by decoding the file and figuring out how many there are. If you only need an estimate, you can just use the framerate and duration provided by ffmpeg -i <filename> to estimate.

Community
  • 1
  • 1
Jason B
  • 12,835
  • 2
  • 41
  • 43
1

If you are invoking ffmpeg programmatically then the OpenCV library provides a convenient python/c++ interface for accessing video properties -

http://opencv.willowgarage.com/documentation/python/reading_and_writing_images_and_video.html#getcaptureproperty

Alternatively you could try to parse the output from ffprobe which comes bundled with ffmpeg and calculate total frame based on duration and FPS.

omatica
  • 194
  • 2
  • 8