Does anyone has an experience of reading and writing ID3 tags in an MP3 file or a WMA file? There are some libraries but I would like to do it from the scratch. :-)
Asked
Active
Viewed 3.6k times
16
-
1Duplicate: http://stackoverflow.com/questions/8948/accessing-mp3-meta-data-with-python – S.Lott Apr 10 '09 at 11:05
-
Related: http://stackoverflow.com/questions/tagged/mp3%20python – S.Lott Apr 10 '09 at 14:25
-
This is my attempt at deciphering the meta... https://github.com/JayRizzo/MP3Player/blob/master/mp3TagEditor.py – JayRizzo Jun 14 '23 at 00:20
4 Answers
14
Dive into Python uses MP3 ID3 tags as an example.

Honest Abe
- 8,430
- 4
- 49
- 64

kgiannakakis
- 103,016
- 27
- 158
- 194
-
Damn, as soon as I read this question I was going to suggest that. – Paolo Bergantino Apr 10 '09 at 06:21
-
2
13
Mutagen https://bitbucket.org/lazka/mutagen Edited 14/09/23 with current code host location
eyeD3 http://eyed3.nicfit.net/
2
A quick google showed up http://id3-py.sourceforge.net/
Maybe this works for you ?

bernhardrusch
- 11,670
- 12
- 48
- 59
-
2You should read the question. He specifically said he would like to do it from scratch. – Simon Hartcher Apr 10 '09 at 06:28