Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Get The Length/Duration Of A Video With ffmpeg/ffprobe

This is what I use to pull the duration time for videos in my projects :

bash
ffprobe -v error -show_entries format=duration \
-of default=noprint_wrappers=1:nokey=1 \
input.mp4

- It gets the length of the container

- If the stream lenghts are different or if the file format doesn't work with the above command > this page > https : //superuser.com/a/945604/85635 > has more details. It's where I got the solution from