How to get meta data out of mp3 files

后端 未结 1 727
予麋鹿
予麋鹿 2020-12-10 17:30

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?

1条回答
  •  佛祖请我去吃肉
    2020-12-10 18:06

    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

    
    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; } 
     } 
    } 
    ?>
    

    0 讨论(0)
提交回复
热议问题