vote up 2 vote down star
1

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.

flag
isn't that a very bad idea? Won't you increase your mp3 sizes by embedding the same picture many times on all mp3 of a single album? Album art should belong to the folder where the album is located. – nosklo Jan 6 '09 at 17:57
@nosklo there are mp3 players showing only embedded pictures and not the one located in folder – sdu 54 mins ago

3 Answers

vote up 0 vote down

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 2 vote down

I've used the eyeD3 module to do this exact thing.

def update_id3(mp3_file_name, artwork_file_name, artist, item_title):    
    #edit the ID3 tag to add the title, artist, artwork, date, and genre
    tag = eyeD3.Tag()
    tag.link(mp3_file_name)
    tag.setVersion([2,3,0])
    tag.addImage(0x08, artwork_file_name)
    tag.setArtist(artist)
    tag.setDate(localtime().tm_year)
    tag.setTitle(item_title)
    tag.setGenre("Trance")
    tag.update()
link|flag

Your Answer

Get an OpenID
or

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