mutagen icon indicating copy to clipboard operation
mutagen copied to clipboard

Python module for handling audio metadata

Results 133 mutagen issues
Sort by recently updated
recently updated
newest added

I accidentally left MIDI recorder running and it created a large file (1200 minutes). The application hosting this (Zynthian) hands for several seconds whilst it parses the file (for its...

With mime type '-->' a URL has to be stored in 'data' instead of the embedded picture.

I'm writing tags to WAV files and most seem to work but a small number has trouble writing tags. I'm simply writing this tag: `mutagen.id3.TIT2(encoding=3, text="test")` and then calling `save()`...

In the code I detected a similar commentary like in the ID3 specs: There is the possibility to put only a link to the image file by using the 'MIME...

docs
question

To correct this error I had to change line 597 (line 618 in this master I believe) from: `desc = self.desc.encode('UTF-8')` To: ``` try: # 2020-10-18 UnidcodeDecodeError desc = self.desc.encode('UTF-8')...

needinfo

Running Fedora 30 with the distro repo versions of quodlibet and mutagen. I believe this is probably a mutagen issue but let me know if you think it isn't. I...

enhancement

``` Traceback (most recent call last): File "../tagger.py", line 39, in tags_modified = write.write_tags(args.path, track, args.only_fields, args.remove_coverart, args.coverart_replace) File "C:\Users\Alpha\workspace\tagger\write.py", line 25, in write_tags tags_modified = filetypes.flac.write_tags(tagfile, json, only_fields, remove_coverart,...

I've added a cover image using kid3 and when I read the tags using `mutagen.File(file_path)` and simply print that, there is no APIC frame in there. The thing is that...

Hi ! Is it a bug or a feature ? ;) **[ mutagen V1.43.0 - mid3v2 V1.3 ]** I tried to place a link with "mid3v2", but the picture was...

I'm reading files from read-only location and need to save them locally/in memory. ATM as far as I understood from error messages, when saving file it assumes the file contents...