I just installed getid3 on my Debian server:
apt-get install php-getid3
How can I use it on my website?
I have read that I can use it this way:
require_once('getid3/getid3.php');
$getID3 = new getID3;
$path = 'sample.mp3';
$mixinfo = $getID3->analyze( $path );
But I don't know where is located getid3.php
to require it. How can I use this php class?