RE: [PHP] mp3 parsing

2004-11-18 Thread Gryffyn, Trevor
EMAIL PROTECTED] > Cc: Ryan King > Subject: Re: [PHP] mp3 parsing > > > Hi, > > maybe this wil help you...i made this some time ago... > > > function ShowID3( $mp3, $path ) > { > $file= $path . $mp3; > $value = fopen( $file, "r"); >

Re: [PHP] mp3 parsing

2004-11-16 Thread Ron Stiemer
Hi, maybe this wil help you...i made this some time ago... Titel: " . $title . "" . "Band: " . $band . "" . "Album: " . $album . "" . "Jahr: " . $year . "" . "Kommentar: " . $comment . ""; fclose( $value ); } ShowID3( "test.mp3", "" ); ?> Regards, Ron Am Mittwoch, 1

[PHP] mp3 parsing

2004-11-16 Thread Ryan King
Anyone out there have a way to read the header info out of an mp3 file? I'm able to parse out the id3 tags, but am having trouble finding a way to read the header info. The info I'm trying to get is the playtime and bitrate. thanks, ryan -- PHP General Mailing List (http://www.php.net/) To unsu