From: Guillaume Pellerin Date: Sun, 22 Jan 2023 14:49:01 +0000 (+0100) Subject: avoid TIT2 id3 tag X-Git-Tag: 0.9~2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=c7824f17e5cee6b747e9c932455978ce6d5c11a9;p=telecaster-client.git avoid TIT2 id3 tag --- diff --git a/telecaster/models.py b/telecaster/models.py index b51ce83..9135ee2 100644 --- a/telecaster/models.py +++ b/telecaster/models.py @@ -233,8 +233,8 @@ class Station(Model): if os.path.exists(file): os.system('mp3info -t "a" -a "a" '+file) audio = ID3(file) - #tag = tags.__dict__['TITLE'] - audio.add(TIT2(encoding=3, text=self.new_title.decode('utf8'))) + # #tag = tags.__dict__['TITLE'] + # audio.add(TIT2(encoding=3, text=self.new_title.decode('utf8'))) #tag = tags.__dict__['ARTIST'] audio.add(TP1(encoding=3, text=self.professor.decode('utf8'))) #tag = tags.__dict__['ALBUM']