Code: Select all
apt-get install php-getid3
I have read in some forums that I can use it this way:
Code: Select all
require_once('getid3/getid3.php');
$getID3 = new getID3;
$path = 'sample.mp3';
$mixinfo = $getID3->analyze( $path );
Thanks.
Code: Select all
apt-get install php-getid3
Code: Select all
require_once('getid3/getid3.php');
$getID3 = new getID3;
$path = 'sample.mp3';
$mixinfo = $getID3->analyze( $path );