This commit is contained in:
z8
2021-12-08 19:49:06 +01:00
commit 6c9b0aea4a
4 changed files with 1821 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
class Tags:
def __init__(self):
self.track_name: str = None
self.artist: str = None
self.album_name: str = None
self.album_artist: str = None
self.track_number: int = None
self.total_number_of_tracks: int = None
self.disc_number: int = None
self.total_number_of_discs: int = None
self.genre: str = None
self.composer: str = None
self.isrc: str = None
self.copyright: str = None
self.label: str = None
self.upc: str = None
self.apple_store_catalog_id: int = None
self.album_title_id: int = None
self.playlist_id: int = None
self.date: str = None
self.cover_data: bytearray = None
self.cover_format: str = None