PHP获取mp3、mp4文件的时长
super
2019-02-19 18:20
3828
PHP获取MP3或者MP4文件的时长
使用getID3库
示例:
include "getid3/getid3.php";
$fileUrl = "xx.mp4"; // xx.mp4/xx.mp3
$getID3 = new getID3();
// 分析文件
$ThisFileInfo = $getID3->analyze($fileUrl);
// 获取文件时长信息 (秒/s)
$intTime = intval($ThisFileInfo['playtime_seconds']);
// 转化为 分钟:秒钟(1:23) 格式
echo floor($intTime / 60) . ':' . ($intTime % 60);
$ThisFileInfo是文件的详细信息,里面的信息非常丰富,感兴趣可以print查看
0 条讨论