PHP Function to get MP3 duration

后端 未结 11 2336
终归单人心
终归单人心 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 18:12

    $getID3 = new getID3;
    $ThisFileInfo = $getID3->analyze($pathName);
    
    // playtime in minutes:seconds, formatted string
    $len = @$ThisFileInfo['playtime_string']; 
    
    //don't get playtime_string, but get playtime_seconds
    $len = @$ThisFileInfo['playtime_seconds']*1000; //*1000 as calculate millisecond
    

    I hope this helps you.

提交回复
热议问题