JamesHeinrich / getID3

http://www.getid3.org/
Other
1.13k stars 245 forks source link

How to add Cover Image? #422

Open vijaykrpp opened 9 months ago

vijaykrpp commented 9 months ago

I am using it in PHP via composer. How do I add album art as ID3 tags in mp3 files?

ewilan-riviere commented 8 months ago

You have an example here: https://github.com/JamesHeinrich/getID3/blob/master/demos/demo.write.php

And a small example:

$image = getimagesize($path);
$tags['attached_picture'][0] = [
    'data' => file_get_contents($path),
    'picturetypeid' => $image[2] ?? null,
    'description' => 'cover',
    'mime' => $image['mime'],
];