可能重复:
获取 MP3 持续时间的 PHP 函数
我目前有以下代码用于获取视频持续时间
$file = "videos/the_video.mp4";
passthru("ffmpeg -i ".$file." 2>&1");
$duration = ob_get_contents();
$search='/Duration: (.*?)[.]/';
$duration=preg_match($search, $duration, $matches, PREG_OFFSET_CAPTURE);
$duration = $matches[1][0];
我将如何使用 MP3 做到这一点?