a few words about web development

PHP Class: How to read ID3v2 tags from mp3 files

Squeezing information out of songs
To read Id3 v2 tags from any given mp3 file you can use the attached PHP class. Usage is very simple:
include 'Id3v2.php';

$i = new Id3v2;
$res = $i->read('music.mp3');

print_r($res);

Below you can download the class:

Like it? Leave a reply! Thanks!

Comments