From c7824f17e5cee6b747e9c932455978ce6d5c11a9 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Sun, 22 Jan 2023 15:49:01 +0100 Subject: [PATCH] avoid TIT2 id3 tag --- telecaster/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'] -- 2.39.5