/*
* MP3 Class
*
* rel. 0.1
*
* Copyright (c) Sumatra Solutions srl http://www.sumatrasolutions.com
* Ludovico Magnocavallo ludo@sumatrasolutions.com
*
* License Type:gnu GPL http://www.gnu.org/copyleft/gpl.html
*
* Heavily inspired by
* Perl Apache::mp3 Module (L. Stein)--great module to create a apache-based MP3 server
* Perl Mp3::info (C. Nandor)--very complicated, hard stuff but useful
* Java class De.vdheide.mp3 (J. Vonderheide)--great stuff, easy to read, had to debug Synchronize () method
*
* ID3v2 tags support not completed
*
* MP3 Header Reference at http://www.mp3-tech.org/
*
*//Quick start:
* $MP 3 = new MP3 ($myfilepath);
* $MP 3->get_info (); File info in $mp 3->info array
* $MP 3->get_id3 (); ID3 info in $mp 3->id3 array
http://www.bkjia.com/PHPjc/631863.html www.bkjia.com true http://www.bkjia.com/PHPjc/631863.html techarticle PHP/* * MP3 class * * rel. 0.1 * * Copyright (c) Sumatra Solutions srlhttp://www.sumatrasolutions.com *ludovico Magnocavalloludo@sumatrasolutions.com * * License type:gnu GP ...