A command-line utility to download songs and playlists directly from Spotify's servers
Find a file
2024-05-09 20:00:54 +02:00
.github/workflows try to fix Github Action 2024-01-17 16:37:51 +01:00
src chore: Update dependencies 2024-05-09 20:00:54 +02:00
.gitignore add option for compression 2024-01-12 12:41:26 +01:00
.gitmodules Add files 2020-10-25 01:39:20 +02:00
Cargo.lock chore: Update dependencies 2024-05-09 20:00:54 +02:00
Cargo.toml chore: Update dependencies 2024-05-09 20:00:54 +02:00
LICENSE Add files 2020-10-25 01:39:20 +02:00
README.md add album download 2024-02-03 15:57:12 +01:00

spotify-dl

A command line utility to download songs, podcasts, playlists and albums directly from Spotify's servers.

You need a Spotify Premium account.

Dependencies

spotify-dl depends on libflac

Debian-based distros

sudo apt install libflac-dev libasound2-dev

Red Hat-based distros

sudo dnf install flac-devel alsa-lib-devel

MacOSX

brew install flac

Usage

spotify-dl 0.1.1
A commandline utility to download music directly from Spotify

USAGE:
    spotify-dl [FLAGS] [OPTIONS] --username <username> [tracks]...

FLAGS:
    -h, --help       Prints help information
    -o, --ordered    Prefixing the filename with its index in the playlist
    -V, --version    Prints version information

OPTIONS:
    -c, --compression <compression>    Setting the flac compression level from 0 (fastest, least compression) to
                                       8 (slowest, most compression). A value larger than 8 will be Treated as 8.
                                       Default is 4.
    -d, --destination <destination>    The directory where the songs will be downloaded [default: .]
    -p, --password <password>          Your Spotify password
    -u, --username <username>          Your Spotify username

ARGS:
    <tracks>...    A list of Spotify URIs (songs, podcasts or playlists)```

Songs, playlists and albums must be passed as Spotify URIs or URLs (e.g. `spotify:track:123456789abcdefghABCDEF` for songs and `spotify:playlist:123456789abcdefghABCDEF` for playlists or `https://open.spotify.com/playlist/123456789abcdefghABCDEF?si=1234567890`).

## Disclaimer

The usage of this software may infringe Spotify's ToS and/or your local legislation. Use it under your own risk.

## License

spotify-dl is lic:ewensed under the MIT license. See [LICENSE](LICENSE).