home ~ socials ~ projects ~ rss

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

April 2023

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

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

Notes

  • 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
end of line
Share link:
https://www.alanwsmith.com/en/2o/9a/kw/7w/?get-the-length-duration-of-a-video-with-ffmpeg-ffprobe