17

Just as the title asks — does anyone have a good example of using the Mutagen Python ID3 library to write to .mp3 files?

I'm looking, in particular, to add disc/track number information, but examples editing the title and artist would be helpful as well.

Cheers,
/YGA

4

3 に答える 3

6

Webで例を確認しましたか。これらのいくつかはあなたを助けるはずです。

[編集:]

変異原チュートリアルはかなり良いので、それ以上の情報は追加しませんでした。dir()は、ほとんどの詳細を提供します。

変異原を使用してアルバムカバーをmp3に設定する場合

変異原を使用した歌詞の埋め込み

from mutagen.mp3 import MP3
from mutagen.easyid3 import EasyID3
import mutagen.id3

filename = 'xxx.mp3'

# Example which shows how to automatically add tags to an MP3 using EasyID3

mp3file = MP3(filename, ID3=EasyID3)

try:
    mp3file.add_tags(ID3=EasyID3)
except mutagen.id3.error:
    print("has tags")

mp3file['title'] = 'Newly tagged'
mp3file.save()
print(mp3file.pprint())
于 2010-10-28T07:25:26.077 に答える