Skip to content

Instantly share code, notes, and snippets.

@vjk2005
Created May 6, 2017 15:41
Show Gist options
  • Save vjk2005/21efe154106d505fb9200e8b8b5f21cc to your computer and use it in GitHub Desktop.
Save vjk2005/21efe154106d505fb9200e8b8b5f21cc to your computer and use it in GitHub Desktop.
Find the total time of all mp4 videos in a folder
find . -maxdepth 1 -iname '*.mp4' -exec ffprobe -v quiet -of csv=p=0 -show_entries format=duration {} \; | paste -sd+ -| bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment