No description
Find a file
Mariano Mangialavori a199b4cf70 Refactor metadata handling
- Enhanced `get_file_metadata` function in `metadata.py` to improve error handling for track and disc numbers, ensuring they are set to None when invalid.

These changes improve the robustness of metadata processing.
2026-02-27 00:33:58 -03:00
.github Timeout tests after 10mins 2025-08-17 14:29:58 +12:00
.vscode Switch project deps management to poetry (#6) 2022-06-14 13:57:18 +02:00
docs Update docs/usage.md 2025-10-08 23:35:53 +13:00
scripts Add support for LRC lyrics embedding and web password protection 2026-02-27 00:24:48 -03:00
spotdl Refactor metadata handling 2026-02-27 00:33:58 -03:00
tests Update cassettes 2025-08-31 12:33:01 +12:00
.dockerignore Remove unwanted directories in container image (#1856) 2023-06-09 21:11:57 +02:00
.editorconfig v4 init 2022-06-14 13:52:43 +02:00
.env.example Add support for LRC lyrics embedding and web password protection 2026-02-27 00:24:48 -03:00
.gitattributes v4 init 2022-06-14 13:52:43 +02:00
.gitignore Add support for LRC lyrics embedding and web password protection 2026-02-27 00:24:48 -03:00
.pylintrc fixed pylint warnings 2022-11-08 19:59:26 +01:00
.readthedocs.yaml update readthedocs build 2023-11-17 14:57:41 +00:00
docker-compose.yml Refactor metadata handling 2026-02-27 00:33:58 -03:00
Dockerfile Refactor Spotify integration 2026-02-26 06:22:41 -03:00
LICENSE start readme 2022-06-15 09:33:54 +12:00
mkdocs.yml Overhauling docs (#1717) 2023-02-27 17:37:14 +01:00
pyproject.toml Bump versions 2025-10-08 23:16:27 +13:00
README.md Merge branch 'dev' into master 2025-10-08 23:19:27 +13:00
uv.lock Bump versions 2025-10-08 23:16:27 +13:00

spotDL v4

spotDL finds songs from Spotify playlists on YouTube and downloads them - along with album art, lyrics and metadata.

MIT License PyPI version PyPi downloads Contributors Discord

spotDL: The fastest, easiest and most accurate command-line music downloader.


Read the documentation on ReadTheDocs!


Installation

Refer to our Installation Guide for more details.

  • spotDL can be installed by running pip install spotdl.

  • To update spotDL run pip install --upgrade spotdl

    On some systems you might have to change pip to pip3.

Other options
  • Prebuilt executable
  • On Termux
    • curl -L https://raw.githubusercontent.com/spotDL/spotify-downloader/master/scripts/termux.sh | sh
  • Arch
  • Docker
    • Build image:

      docker build -t spotdl .
      
    • Launch container with spotDL parameters (see section below). You need to create mapped volume to access song files

      docker run --rm -v $(pwd):/music spotdl download [trackUrl]
      
    • Build from source

      git clone https://github.com/spotDL/spotify-downloader && cd spotify-downloader
      pip install uv
      uv sync
      uv run scripts/build.py
      

      An executable is created in spotify-downloader/dist/.

Installing FFmpeg

FFmpeg is required for spotDL. If using FFmpeg only for spotDL, you can simply install FFmpeg to your spotDL installation directory: spotdl --download-ffmpeg

We recommend the above option, but if you want to install FFmpeg system-wide, follow these instructions

  • Windows Tutorial
  • OSX - brew install ffmpeg
  • Linux - sudo apt install ffmpeg or use your distro's package manager

Usage

Using SpotDL without options:

spotdl [urls]

You can run spotDL as a package if running it as a script doesn't work:

python -m spotdl [urls]

General usage:

spotdl [operation] [options] QUERY

There are different operations spotDL can perform. The default is download, which simply downloads the songs from YouTube and embeds metadata.

The query for spotDL is usually a list of Spotify URLs, but for some operations like sync, only a single link or file is required. For a list of all options use spotdl -h

Supported operations
  • save: Saves only the metadata from Spotify without downloading anything.

    • Usage: spotdl save [query] --save-file {filename}.spotdl
  • web: Starts a web interface instead of using the command line. However, it has limited features and only supports downloading individual songs.

  • url: Get user-friendly URL for each song from the query.

    • Usage: spotdl url [query]
  • sync: Updates directories. Compares the directory with the current state of the playlist. Newly added songs will be downloaded and removed songs will be deleted. No other songs will be downloaded and no other files will be deleted.

    • Usage: spotdl sync [query] --save-file {filename}.spotdl

      This creates a new sync file. To update the directory in the future, use:

      spotdl sync {filename}.spotdl

  • meta: Updates metadata for the provided song files.

Music Sourcing and Audio Quality

spotDL uses YouTube as a source for music downloads. This method is used to avoid any issues related to downloading music from Spotify.

Note

Users are responsible for their actions and potential legal consequences. We do not support unauthorized downloading of copyrighted material and take no responsibility for user actions.

Audio Quality

spotDL downloads music from YouTube and is designed to always download the highest possible bitrate; which is 128 kbps for regular users and 256 kbps for YouTube Music premium users.

Check the Audio Formats page for more info.

Contributing

Interested in contributing? Check out our CONTRIBUTING.md to find resources around contributing along with a guide on how to set up a development environment.

Join our amazing community as a code contributor

License

This project is Licensed under the MIT License.