However, i found a bit of a bug (that doesn't turn up when i search the forums/ google....)
Code: Select all
Uninitialized string offset: 6 in /var/www/<not needed>/module.tag.id3v2.php on line 1855 Notice: Uninitialized string offset: 6 in /var/www/<not needed>/module.tag.id3v2.php on line 1859
Just wanted to let you know that i seem to get a valid array back. It does not matter what mp3 file i feed it, and here are the initialization settings:
Code: Select all
// make the id3 object and set it's options up correctly
$this->id3 = new getID3;
$this->id3->encoding ='UTF-8';
$this->id3->encoding_id3v2 = 'UTF-8';
$this->id3->option_tag_id3v1 = FALSE;
$this->id3->option_tag_id3v2 = TRUE;
$this->id3->option_tag_lyrics3 = FALSE;
$this->id3->option_tag_apetag = TRUE;
$this->id3->option_accurate_results = FALSE;
$this->id3->option_tags_images = TRUE;
i'll be looking into this as i get time.