aramds / php-reader

code.google.com/p/php-reader
0 stars 0 forks source link

ID3v1 throws an exception on all MP3s #16

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
- Run the following code on the test files mentioned below:

    new ID3v1($filePath);

    Test files can be downloaded from:
    http://www.mp3int.com/download_mp3/466843/11647452/Enrique_Iglesias_Somebod
y's_Me/
    http://www.mp3int.com/download_mp3/455458/7601091/Chris_Brown_Forever/
    http://www.mp3int.com/download_mp3/444472/1376962/Lil_Wayne_Lollipop_(feat.
_Static_Major)/

Expected: No exception occurs. Note that the website indicates that all of 
the files have ID3v1 information.
Actual: An exception occurs: "File does not contain ID3v1 tag"

Original issue reported on code.google.com by jonathan...@gmail.com on 17 Jan 2009 at 7:44

GoogleCodeExporter commented 9 years ago
I was not able to reproduce the error. I have downloaded all three songs and 
executed
the following PHP code on them:

<?php
require_once("ID3v1.php");
print_r(new ID3v1("somebodyisme.mp3"));
print_r(new ID3v1("Forever.mp3"));
print_r(new ID3v1("Lollipop.mp3"));

And I get the expected result of parsed tags. Tested with all versions of PHP5.

Please provide me with your PHP version (run php -version from commandline) and 
the
minimum PHP code that causes this error. Also, send a link to _your_ test file 
that
caused this error or send the file to my email.

Original comment by svollbehr on 15 Feb 2009 at 10:46

GoogleCodeExporter commented 9 years ago
Closed until more information provided.

Original comment by svollbehr on 19 Feb 2009 at 2:27