Skip to content

Instantly share code, notes, and snippets.

View tit9i's full-sized avatar

Thierry AKANYA tit9i

View GitHub Profile
@tit9i
tit9i / audio length Mp3 class- PHP
Created March 30, 2022 12:02 — forked from jagneshchawla/audio length Mp3 class- PHP
Calculate Audio length of MP3 music - With PHP
//-----------usage------------
$f = "song.mp3";
$m = new mp3file($f);
$a = $m->get_metadata();
if ($a['Encoding']=='Unknown')
echo "?";
else if ($a['Encoding']=='VBR')
$len= $a['Length mm:ss'];