Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to add Cover Image? #422

Open
vijaykrpp opened this issue Oct 1, 2023 · 1 comment
Open

How to add Cover Image? #422

vijaykrpp opened this issue Oct 1, 2023 · 1 comment

Comments

@vijaykrpp
Copy link

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

@ewilan-riviere
Copy link

ewilan-riviere commented Oct 31, 2023

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'],
];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants