I've been using mutagen for reading and writing MP3 tags, but I want to be able to embed album art directly into the file.
|
1
|
|||||
|
|
|
I tried doing the same thing with Java. This website helped me out a ton! It became very complicated trying to support two different versions of ID3 tags. Just try to make yourself familiar with the ID3 spec. You have to add a new APIC/PIC frame in the correct format. I would first work on being able to add other frame types like comments and easy things like titles or other simple strings. Then move on to more difficult things like an image. Since you are adding such a large frame to the beginning of the file, you will probably end up having to rewrite thw whole file to make more room for the picture frame. |
||
|
|
|
|
Looks like you have to add a special type of frame to the MP3. See the site on ID3 tags Also the tutorial for mutagen implies that you can add ID3 tags in mutagen see |
||
|
|
|
|
I've used the eyeD3 module to do this exact thing.
|
||
|
|
|
|
Here is how to add example.png as album cover into example.mp3 with mutagen:
|
||
|
|
