Change links in playable.py and edited the bytes_to_base62 function in utils.py

This commit is contained in:
diamond75 2025-04-04 21:53:48 +13:00
parent fe1ee92caa
commit 1db1e8b602
2 changed files with 5 additions and 4 deletions

View file

@ -19,8 +19,8 @@ from zotify.utils import (
fix_filename,
)
IMG_URL = "https://i.s" + "cdn.co/image/"
LYRICS_URL = "https://sp" + "client.wg.sp" + "otify.com/color-lyrics/v2/track/"
IMG_URL = "https://i.scdn.co/image/"
LYRICS_URL = "https://spclient.wg.spotify.com/color-lyrics/v2/track/"
class Lyrics:

View file

@ -208,7 +208,7 @@ def fix_filename(
return sub(regex, substitute, str(filename), flags=IGNORECASE)
def bytes_to_base62(id: bytes) -> str:
def bytes_to_base62(idstr: bytes) -> str:
"""
Converts bytes to base62
Args:
@ -216,4 +216,5 @@ def bytes_to_base62(id: bytes) -> str:
Returns:
base62
"""
return BASE62.encode(id, 22).decode()
print (idstr)
return BASE62.encode(idstr, 22).decode()