Does anyone know how to fetch the number of total frames from a video file using ffmpeg? The render output of ffmpeg shows the current frame and I need the frame count to calculate the progress in percent.
|
This works like charm:
|
|||||
|
|
I use the php_ffmpeg then I can get all the times and all the frames of an movie . As belows
And then the detail is on the page. |
|||
|
|
|
try this:
|
||||
|
|
Calculate it based on time, instead.That's what I do and it works great for me, and many others.) First, find the length of the video in the below snippet:
You'll should be able to consistently and safely find
Just becareful to not always expect perfect output from these status lines. They can include error messages like here:
Once you have the time, it is simple math: |
|||||||||||||
|
|
Try something like:
It writes the frame number to stderr, so you can retrieve the last frame from this. |
||||
|
|
|
Not all formats store their frame count or total duration - and even if they do, the file might be incomplete - so ffmpeg doesn't detect either of them accurately by default. Instead, try seeking to the end of the file and read the time, then count the current time while you go. Alternatively, you can try |
|||
|
|