yaronzz / Tidal-Media-Downloader

Download 'TIDAL' Music On Windows/Linux/MacOs (PYTHON/C#)
http://doc.yaronzz.com/post/tidal_dl_installation/
Apache License 2.0
3.4k stars 473 forks source link

[QUESTION]: How to Bulk Download Albums #1067

Closed luocheng610 closed 1 year ago

luocheng610 commented 1 year ago

Which tool

How to Bulk Download Albums

Describe your question

How to Bulk Download Albums

Add screenshots

No response

talios commented 1 year ago

The built in way is to just put each URL to download in a text file and run tidal-dl with that

$ echo URL1 > download.txt
$ echo URL2 >> download.txt
$ echo URL3 >> download.txt
$ tidal-dl -l download.txt

I have various bash/fish functions to help with this as well:

function dlt
  mkdir -p "/Users/me/Music/Tidal/Album"
  for album in $argv
    tidal-dl -l $album
  end
end

this one lets just type dlt URL1 URL2 URL3... on the command line and they'll download sequentially.

I also have variants with schedule the invocation as a background process so I can just continue with what I'm doing - that background process can either run each job in serial, or parallel.

luocheng610 commented 1 year ago

The built in way is to just put each URL to download in a text file and run tidal-dl with that

$ echo URL1 > download.txt
$ echo URL2 >> download.txt
$ echo URL3 >> download.txt
$ tidal-dl -l download.txt

I have various bash/fish functions to help with this as well:

function dlt
  mkdir -p "/Users/me/Music/Tidal/Album"
  for album in $argv
    tidal-dl -l $album
  end
end

this one lets just type dlt URL1 URL2 URL3... on the command line and they'll download sequentially.

I also have variants with schedule the invocation as a background process so I can just continue with what I'm doing - that background process can either run each job in serial, or parallel.

dear, thank you very much