PHP Function to get MP3 duration

后端 未结 11 2331
终归单人心
终归单人心 2020-11-27 17:35

Is there any PHP function that will give me the MP3 duration. I looked at ID 3 function but i don\'t see any thing there for duration and apart from this,id3 is some kind of

11条回答
  •  攒了一身酷
    2020-11-27 17:53

    There is no native php function to do this.

    Depending on your server environment, you may use a tool such as MP3Info.

    $length = shell_exec('mp3info -p "%S" sample.mp3');   // total time in seconds
    

提交回复
热议问题