我getid3
用来从远程 URL 获取文件大小和持续时间。getid3
不适用于远程 URL,因此解决方法是将 mp3 下载到临时位置,读取数据然后将其删除。
代码:
<?php $filename = tempnam('/tmp','getid3');
if (file_put_contents($filename,file_get_contents('http://feeds.soundcloud.com/stream/336401044-scott-johnson-27-tms-1314-pm.mp3', false, null, 0, 32768))) {
if (require_once('id3/getid3.php')) {
$getID3 = new getID3;
$ThisFileInfo = $getID3->analyze($filename);
echo '<pre>'.print_r($ThisFileInfo, true).'</pre>';
}
unlink($filename);
};?>
我遇到的问题是它只下载 mp3 文件的前 32768kb,并且没有显示正确的文件大小(显示为最大 32768)或文件的正确持续时间。如果我增加最大大小,代码将崩溃。
有没有办法下载完整的 mp3 或找到一种方法来获得适当的标题大小而不下载完整的文件?