check duration of audio files on the command-line

后端 未结 14 914
没有蜡笔的小新
没有蜡笔的小新 2021-02-05 00:13

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

14条回答
  •  [愿得一人]
    2021-02-05 00:37

    sox --info -D file             --> duration in seconds
    sox --info -d file             --> duration in HH:mm:ss.ss
    sox --info file                --> metadata 
    

提交回复
热议问题