I need to check the duration of a group of audio files. Is there a simple way to do this on the unix command-line?
> duration *
I have the a
on OSX
Print the length of each audio file in the current dir:
afinfo * | awk '/estimated duration/ { print $3 }'
Include the filepath:
afinfo * | awk '/File:/ { song=$2 } /estimated duration/ { print song, $3 }'