Just as the question asks - does anyone have a good example of using the Mutagen python ID3 library to write mp3 files?

I'm looking in particular to add disc/track number information, but examples editing the title and artist would be helpful as well.

Cheers, /YGA

link|improve this question

1  
Is there some problem with the Mutagen tutorial? code.google.com/p/mutagen/wiki/Tutorial – pafcu Oct 28 '10 at 7:16
feedback

1 Answer

Did you check out the examples on the web. Some of these should help you.

[Edit:]

Mutagen tutorial is pretty good, hence did not add more information. dir() provides most of the details.

For setting album cover to mp3 using mutagen

Embedding lyrics using mutagen

An example

from mutagen.mp3 import MP3
from mutagen.easyid3 import EasyID3
import mutagen.id3

filename = 'xxx.mp3'

# Example which shows how to automatically add tags to an MP3 using EasyID3

mp3file = MP3(filename, ID3=EasyID3)

try:
    mp3file.add_tags(ID3=EasyID3)
except mutagen.id3.error:
    print("has tags")

mp3file['title'] = 'Newly tagged'
mp3file.save()
print(mp3file.pprint())
link|improve this answer
... but that example only has reading. – YGA Oct 28 '10 at 20:19
feedback

Your Answer

 
or
required, but never shown

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