This commit is contained in:
vitiko98 2021-03-22 13:51:03 -04:00
parent 37c471693c
commit 049280c178
2 changed files with 3 additions and 3 deletions

View File

@ -92,14 +92,14 @@ def tag_flac(filename, root_dir, final_name, d, album, istrack=True, em_image=Fa
audio["TRACKTOTAL"] = str(d["album"]["tracks_count"])
audio["ALBUM"] = d["album"]["title"]
audio["DATE"] = d["album"]["release_date_original"]
audio["COPYRIGHT"] = _format_copyright(d["copyright"])
audio["COPYRIGHT"] = _format_copyright(d.get("copyright", "n/a"))
else:
audio["GENRE"] = _format_genres(album["genres_list"])
audio["ALBUMARTIST"] = album["artist"]["name"]
audio["TRACKTOTAL"] = str(album["tracks_count"])
audio["ALBUM"] = album["title"]
audio["DATE"] = album["release_date_original"]
audio["COPYRIGHT"] = _format_copyright(album["copyright"])
audio["COPYRIGHT"] = _format_copyright(album.get("copyright", "n/a"))
if em_image:
emb_image = os.path.join(root_dir, "cover.jpg")

View File

@ -13,7 +13,7 @@ requirements = read_file("requirements.txt").strip().split()
setup(
name=pkg_name,
version="0.9.7",
version="0.9.8",
author="Vitiko",
author_email="vhnz98@gmail.com",
description="The complete Lossless and Hi-Res music downloader for Qobuz",