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 amazing SoX app which has an option called stats that generates a set of audio info including duration. I am looking for a way to get only duration. I am flexible on output format, could be any of sample length, hh:mm:ss, or seconds. The latter would be my preference.

link|improve this question

68% accept rate
feedback

2 Answers

mp3info -p "%m:%s\n" filename

gives you the length of the specified file.

link|improve this answer
1  
so wrap that in a for loop and you're all set, for file in *.mp3 ; do mp3info -p "%m:%s\n" $file ; done. Good luck to all. – shellter Jan 19 at 21:17
feedback
soxi -D filename
soxi -D *

Soxi queries metadata of audio files; D is the duration option. It supports globbing. Soxi's big brother sox does command-line audio processing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.