Skip to content

Instantly share code, notes, and snippets.

@pjobson
Created August 3, 2024 06:33
Show Gist options
  • Save pjobson/b58e239f8d9dc6a92bd81f97e06f1fb1 to your computer and use it in GitHub Desktop.
Save pjobson/b58e239f8d9dc6a92bd81f97e06f1fb1 to your computer and use it in GitHub Desktop.
get the duration of a video
#!/bin/bash
if [[ $1 = "" ]]; then
echo "Shows video length in minutes."
echo "Expects: videoduration.sh filename.mp4"
else
length=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "${1}" | sed -E 's/\.[[:digit:]]+$//')
zpad=`printf %03d $(($length / 60))`
echo "${zpad} min - ${1}"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment