How do you embed album art into an MP3 using Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T12:50:47Z http://stackoverflow.com/feeds/question/409949 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409949/how-do-you-embed-album-art-into-an-mp3-using-python 2 How do you embed album art into an MP3 using Python? Connor 2009-01-03T21:59:30Z 2009-06-16T17:13:44Z <p>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.</p> http://stackoverflow.com/questions/409949/how-do-you-embed-album-art-into-an-mp3-using-python/409967#409967 0 Answer by jjnguy for How do you embed album art into an MP3 using Python? jjnguy 2009-01-03T22:06:37Z 2009-01-03T22:06:37Z <p>I tried doing the same thing with Java. <a href="http://www.id3.org/Developer_Information" rel="nofollow">This</a> website helped me out a ton!</p> <p>It became very complicated trying to support two different versions of ID3 tags.</p> <p>Just try to make yourself familiar with the ID3 spec. You have to add a new APIC/PIC frame in the correct format.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/409949/how-do-you-embed-album-art-into-an-mp3-using-python/409988#409988 1 Answer by Andrew Cox for How do you embed album art into an MP3 using Python? Andrew Cox 2009-01-03T22:20:00Z 2009-01-03T22:20:00Z <p>Looks like you have to add a special type of frame to the MP3. See the site on <a href="http://www.id3.org/id3v2.3.0#head-70a65d30522ef0d37642224c2a40517ae35b7155" rel="nofollow">ID3 tags</a> </p> <p>Also the tutorial for mutagen implies that you can add ID3 tags in mutagen <a href="http://svn.sacredchao.net/svn/quodlibet/trunk/mutagen/TUTORIAL" rel="nofollow">see</a></p> http://stackoverflow.com/questions/409949/how-do-you-embed-album-art-into-an-mp3-using-python/1002814#1002814 2 Answer by Owen for How do you embed album art into an MP3 using Python? Owen 2009-06-16T17:13:44Z 2009-06-16T17:13:44Z <p>I've used the <a href="http://eyed3.nicfit.net/" rel="nofollow">eyeD3</a> module to do this exact thing.</p> <pre><code>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() </code></pre>