Getting Started
The Mp3
class is used to represent an mp3 file from the filesystem, after setting up your Tagger you can get Mp3
instances from it:
$mp3 = $tagger->open("/var/music/song.mp3");
Then you can start to read the meta data:
$mp3->getArtist();
$mp3->getAlbum();
$mp3->getYear();
$mp3->getTrackNumber();
$mp3->getTitle();