4

What's the simplest python lib for edit mp3 album and artist?

I mean, just get and set the strings.

The Student
  • 27,520
  • 68
  • 161
  • 264

2 Answers2

3

I don't know if it's the simplest, but one Python-centric audio tagging library I've heard about many times is Mutagen.

gspr
  • 11,144
  • 3
  • 41
  • 74
1

Good review at http://www.blog.pythonlibrary.org/2010/04/22/parsing-id3-tags-from-mp3s-using-python/

Gist of it: eyeD3 (with a quick hack to install on Windows) or mutagen (without much documentation). Examples of each in action: How do you embed album art into an MP3 using Python?

There is also a package at https://github.com/disko/bp.tagging which wraps mutagen - this may help you figure it out.

Community
  • 1
  • 1
Hugh Bothwell
  • 55,315
  • 8
  • 84
  • 99