I am trying to write APIC picture to mp3 file with getid3. here is the code;

$cover = "/home/user/public_html/artwork/cover.jpg";
$TagData['attached_picture'][]=array(
'picturetypeid'=>2, // Cover. More: module.tag.id3v2.php -> function APICPictureTypeLookup
'description'=>'cover', // text field
'mime'=>'image/jpeg', // Mime type image
'data'=>$cover // Image data
);

but it doesnt work. image size is around 1.5 MB. should i resize it or sth ?

where am i wrong ?

Thanks

link|improve this question

What library are you using, and how are you saving the data into the MP3 file? – Pekka Jan 30 '11 at 17:26
i use getid3 library getid3.org – Ahmet vardar Jan 30 '11 at 17:30
i can save title,artist,album etc info without any problem but when it comes to APIC it doesnt work properly – Ahmet vardar Jan 30 '11 at 17:32
we need more code, up to the WriteID3v2 call. – chx Feb 2 '11 at 16:53
also: does it throw an error or does it just fail silently? – horatio Feb 2 '11 at 17:22
show 1 more comment
feedback

3 Answers

Looking at the demo they have on their website: http://www.getid3.org/source/demo.write.phps

snippet of code:

$fd = fopen($_FILES['userfile']['tmp_name'], 'rb')
$APICdata = fread($fd, filesize($_FILES['userfile']['tmp_name']));
fclose ($fd);

$imagetypes = array(1=>'gif', 2=>'jpeg', 3=>'png');
if (isset($imagetypes[$APIC_imageTypeID])) {
    $TagData['attached_picture'][0]['data']          = $APICdata;
    $TagData['attached_picture'][0]['picturetypeid'] = $_POST['APICpictureType'];
    $TagData['attached_picture'][0]['description']   = $_FILES['userfile']['name'];
    $TagData['attached_picture'][0]['mime']          = 'image/'.$imagetypes[$APIC_imageTypeID];
}

Seems like the data key needs to be the image content, not just the path to the image file. So in your case, it should be something like:

$cover = "/home/user/public_html/artwork/cover.jpg";
$fd = fopen($cover, 'rb')
$APICdata = fread($fd, filesize($coverFile));
fclose ($fd);

$TagData['attached_picture'][]=array(
'picturetypeid'=>2, // Cover. More: module.tag.id3v2.php -> function APICPictureTypeLookup
'description'=>'cover', // text field
'mime'=>'image/jpeg', // Mime type image
'data'=>$APICdata  // Image data
);

Note: This is just after a quick glance at the demo code, I have not used this library or tested this code.

link|improve this answer
feedback

GetID3 needs the content of the file to be send for the data, not the file path. Then only it will be able to embed them into the file. Try

$cover = "/home/user/public_html/artwork/cover.jpg";
$TagData['attached_picture'][]=array(
    'picturetypeid'=>2, // Cover. More: module.tag.id3v2.php -> function APICPictureTypeLookup
    'description'=>'cover', // text field
    'mime'=>'image/jpeg', // Mime type image
    'data'=> file_get_contents($cover) // Image data; not the file name
);

tested and working :)

link|improve this answer
doesnt work for a reason :( i put these lines after that $tagwriter->tag_data = $TagData; $tagwriter->WriteTags(); – Ahmet vardar Feb 8 '11 at 14:35
And what error you are getting? or its just it wont get inserted into the file? – Anush Prem Feb 9 '11 at 10:09
if its causing the problem then it might be the size of the file, try resizing it. – Anush Prem Feb 9 '11 at 14:44
feedback

I found this in the source code:

case 'APIC':
    // 4.14  APIC Attached picture
    // Text encoding      $xx
    // MIME type          <text string> $00
    // Picture type       $xx
    // Description        <text string according to encoding> $00 (00)
    // Picture data       <binary data>

So picture data must be binary.

The solution is here: getid3 demo

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.