Skip to content

Instantly share code, notes, and snippets.

@xabbu
Created August 30, 2019 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xabbu/f05ba48cb43742d82e3f62d784bebddd to your computer and use it in GitHub Desktop.
Save xabbu/f05ba48cb43742d82e3f62d784bebddd to your computer and use it in GitHub Desktop.
#!/bin/bash
time=0
for file
do
videotime=$(mediainfo --Inform="General;%Duration%" "$file")
time=$(("$time" + "$videotime"/1000))
done
printf '%dh:%dm:%ds\n' $(($time/3600)) $(($time%3600/60)) $(($time%60))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment