incomplete escape \U at position 3 #38
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
having this issue when downloading from this link: https://open.spotify.com/album/7D2DrBRs922elDgsyNrqjA?si=GZAHGHmhTwOe6j2bozmutQ
I am facing the same problem. I tried removing those failed entries from .song_ids and .song_archive but no luck.
i had a few escape \M problems with the same line from your traceback.
try to replace this in track.py (line 190):
c = len([file for file in Path(filedir).iterdir() if re.search(f'^{filename}_', str(file))]) + 1with:
c = len([file for file in Path(filedir).iterdir() if re.search(fr'^{re.escape(str(filename))}_', str(file))]) + 1it's the special characters it can't write to the filename (: is the problem here probably - you can't have a filename with : or ? for example). this will remove them from the filename so the file can be created but leave the tags correctly written.
i can confirm i can download it.
edit: you could also add
--output "D:/Music/Dreamcatcher - Apocalipse From us/{track_number}.{ext}"at the end of your command, where you point to your download directory, name the album manually and write only track number in the desired directory. that should also write the files correctly. you can then use mp3tag or some other similar software to rename them as you usually do.
same issue here with
I've hit into this. Here is an example of an album that might trigger it...
00vb6sViDbJLmLLchfbRh4
Ends up happening on track 2 for this one for me but it might be different for others. If it triggers it does so consistently. What I usually end up doing is adding
--root-path .so that it tries to the current folder then it works just fine. I'll move that folder to where it is supposed to go and it doesn't give any fits moving either.Bro thank you so much, this did it for me!
https://github.com/zotify-dev/zotify/blob/main/INSTALLATION.md
i used Scoop to install zotify based on this link, how do i find the
track.py? thanks!