Skip to content

Instantly share code, notes, and snippets.

@twinsant
Last active November 12, 2023 10:27
Show Gist options
  • Save twinsant/1dbc495559cef0737a117a53247ac912 to your computer and use it in GitHub Desktop.
Save twinsant/1dbc495559cef0737a117a53247ac912 to your computer and use it in GitHub Desktop.
Sum videos length in current dir
# alias vlen='f(){ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "$@"};f'
find . -type f|grep mp4 | xargs -L 1 ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1|awk '{s+=$1} END {print s}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment