Created
August 3, 2024 06:33
-
-
Save pjobson/b58e239f8d9dc6a92bd81f97e06f1fb1 to your computer and use it in GitHub Desktop.
get the duration of a video
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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