如何从mp3文件中获取元数据

时间:2011-01-17 02:40:07

标签: php mp3

有人可以推荐一个好的独立类(不是PEAR的一部分)或其他方法让我从大约1,400个MP3文件中获取一些基本的元数据吗?

1 个答案:

答案 0 :(得分:11)

http://getid3.sourceforge.net/

适用于ID3 v1和V2。阅读不仅仅是id3,但应该符合要求。您还可以使用http://www.htmlhelpcentral.com/messageboard/showthread.php?t=12006

中的以下内容进行播放

<? 
class CMP3File { 
 var $title;var $artist;var $album;var $year;var $comment;var $genre; 
 function getid3 ($file) { 
  if (file_exists($file)) { 
   $id_start=filesize($file)-128; 
   $fp=fopen($file,"r"); 
   fseek($fp,$id_start); 
   $tag=fread($fp,3); 
   if ($tag == "TAG") { 
    $this->title=fread($fp,30); 
    $this->artist=fread($fp,30); 
    $this->album=fread($fp,30); 
    $this->year=fread($fp,4); 
    $this->comment=fread($fp,30); 
    $this->genre=fread($fp,1); 
    fclose($fp); 
    return true; 
   } else { 
    fclose($fp); 
    return false; 
   } 
  } else { return false; } 
 } 
} 
?>