You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from mutagen.mp3 import MP3
from mutagen.id3 import TPE1
f = MP3("file.mp3")
if f.tags is None:
f.add_tags()
f.tags.add(TPE1(text=[u"artist1", u"artist2"]))
f.save()
#######
from mutagen.mp3 import EasyMP3
f = EasyMP3("a.mp3")
f["artist"] = [u"artist1", u"artist2"]
f.save()
Is it possible to embed multiple artists in an
MP3
(or evenMP4
)? If so, can somebody provide me an example? Does it also work withEasyID3
?Thanks in advance!
The text was updated successfully, but these errors were encountered: