-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Playlist - download directly to ./Playlists/Playlist_Name/nnn - Track_Title.flac to allow downloading only newly added tracks #191
Comments
Thank you for having posted an issue, @Beersteddy! I am not quite understanding the situation here and what change you are requesting, so let me expand a bit on the playlist downloading logic:
Are you saying that submitting a playlist URL to TIDAL for the second or third etc. time causes the entire playlist to be downloaded again as it doesn’t check for the existence of the playlist already? |
Yes. Exactly what's happening. To test it: Create new playlist BTW. |
Great to hear that you find it useful! Okay, checking for the existence of the playlist isn’t as straightforward, because of the That would be simplest and easiest to implement, but not best. Ideally, every 1, …, N items in the playlist would be checked for being present and only the missing ones would be retrieved. There are some wrinkles here with playlists changing, and failed downloads due to whatever reason, so what are your thoughts? |
Honestly, whichever options that prevents re-downloadong and is easiest to implement. Maybe worth checking how the original downloader deals with it as it seems to be directly naming files '001. Title. Flac' |
The default tidal-wave logic for playlists appears to be as described here
Download to
./Artist/Album/nn - Track_Title.flac
then move to./Playlists/Playlist_Name/
and rename tonnn - Track_Title.flac
This works fine up to the point when new tracks are added to the playlist and it's getting downloaded again in tidal-wave, which appears to download all of the tracks once again since they no longer exists in download directory due to being renamed.
Suggested solution:
Set the download location and file name to
./Playlists/Playlist_Name/nnn - Track_Title.flac
(nnn being order number in playlist) before the download starts. Pretty much like Tidal-Media-Downloader does.The text was updated successfully, but these errors were encountered: