I need a PHP class where I just pass the path of the file on server. Something like
require_once(‘class.mp3tag_reader.php’);
$mp3tags = new tags();
$mp3tags->load_mp3(“path-to-the-file.mp3”);
Then it should read ALL metatags including APICS and allow me to store these info in a database (or a folder for the images)
Class should come with instruciotns for the use.
