Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
205 views
in Technique[技术] by (71.8m points)

php - How to get meta data out of mp3 files

Can anyone recommend a good standalone class (not part of PEAR) or another method for me to grab some basic meta data from about 1,400 MP3 files?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

http://getid3.sourceforge.net/

Works with both ID3 v1 and V2. Reads more than just id3 but should fit the bill. You can also play with the following taken from 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;?} 
?} 
} 
?>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...