문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top