Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC, M4A, Monkey's Audio, MP3, Musepack, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack and OptimFROG audio files. All versions of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read ...
7
votes
1answer
2k views
Reading file data during form's clean method
So, I'm working on implementing the answer to my previous question.
Here's my model:
class Talk(models.Model):
title = models.CharField(max_length=200)
mp3 = ...
4
votes
2answers
254 views
Python - how to a open remote file in binary read mode?
I'm trying to use the mutagen module to read the metadata of an mp3 file. The problem is that the module is expecting a local mp3 file, but my mp3 files are on a remote server.
This is the line in ...
3
votes
1answer
404 views
mutagen: how to detect and embed album art in mp3, flac and mp4
I'd like to be able to detect whether an audio file has embedded album art and, if not, add album art to that file. I'm using mutagen
1) Detecting album art. Is there a simpler method than this ...
1
vote
1answer
75 views
Python: Optimizing Code Using SQLite3 + Mutagen
I'm in the process of improving an open-source music database, which reads songs in from my collection and stores them to an SQLite database. In turn, I'm able to leverage the database to find ...
1
vote
1answer
154 views
mutagen and id3 tags - character encoding confusion
I've run into a problem when reading some id3 tags with Icelandic letters.
A quick example from the shell.
>>> audio = mutagen.easyid3.EasyID3('./Björk/Albums/1990 - Gling-Gló [mp3-231]/01 - ...
1
vote
1answer
889 views
Does anyone have good examples of using mutagen to write files?
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 ...
1
vote
2answers
383 views
Determine MP3 bit depth in Python via Mutagen
Is there a way to determine an MP3 file's encoded bit depth (ie 8, 16, 24, 32) in Python using the Mutagen library?
0
votes
1answer
207 views
Mutagen's OggFileType producing 'Type Error: NoneType' exception
Ive just started using mutagen and have succefully used it with m4a, mp3, ape, afs, and flac. However Im having difficulty with the OggFileType class, when I try to create an instance of OggFileType ...
0
votes
1answer
674 views
Change embedded image type in APIC ID3 tag via Mutagen
I have a large music library which I have just spent around 30 hours organizing. For some of the MP3 files, I embedded the cover art image as type 0 (Other) and I'd like to change it to type 3 (Front ...
0
votes
2answers
180 views
how to correct the misencoded string?
i used mutagen to read the mp3 metadata, since the id3 tag is read in as unicode but in fact it is GBK encoded. how to correct this in python?
audio = EasyID3(name)
title = audio["title"][0]
print ...
-1
votes
2answers
99 views
Manipulating .mp3 metadata with Python in Windows 7
I am attempting to edit certain MP3 files ID3 tags through Python. I have done some research, and found the mutagen, and eyeD3 libraries. However, I have run into similar issues with both of these ...