Zend_Id3
So while working with out dated libraries to fetch id3 tags I deiced to try and write my own Id3 Tag parser and of course I figured why not share it with the Zend Framework Community. I have crated the Zend_Id3 Proposal and I have started initial coding on it.
Currently it only parses out Id3v1 and Id3v1.1 tags but I’m working on the Id3v2.x support now. If you want to see the source I am publishing it to github.com.
Current usage is like this:
$id3 = new Zend_Id3();
$tags = $id3->analyze('/Id3/_files/demo.mp3');
print_r($tags);
It only returns an array for right now but I’m considering having it return an object so you have easy detection of which variables are there and which ones are not.
I’ll post more when I get more done.
read more

