PHP Function to get MP3 duration

后端 未结 11 2432
终归单人心
终归单人心 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:04

    Install getid3, but if you only need duration, you can delete all but these modules:

    • module.audio.mp3.php
    • module.tag.id3v1.php
    • module.tag.apetag.php
    • module.tag.id3v2.php

    Access the duration with code like this:

    $getID3 = new getID3;
    $ThisFileInfo = $getID3->analyze($pathName);
    $len= @$ThisFileInfo['playtime_string']; // playtime in minutes:seconds, formatted string
    

    Get it at Sourceforge

提交回复
热议问题