Frage

I'd like to clear all metadata in an MP3 file, and I'm already using Mutagen in my project. Is there a way I could simply clear all the metadata from the file?

War es hilfreich?

Lösung

It looks like you can use the delete method of the MP3 object:

mp3 = MP3(fname)
mp3.delete()
mp3.save()

Source: Remove ID3 tags from MP3 files

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top