Skip to main content

Copy Spotify playlists to YTMusic/YouTube Music

Project description

Tools for moving from Spotify to YTMusic

Overview

This is a set of scripts for copying "liked" songs and playlists from Spotify to YTMusic. It provides both CLI tools and a GUI (implemented by Yoween, formerly called spotify_to_ytmusic_gui).

Thanks

Thanks to @RadicalArti and Meet Vora for their generous financial contributions to this project.

Getting Started

Install Python (you may already have it)

You will need a somewhat recent version of Python 3.10 and above are known to work, 3.8-3.10 might work.

For Windows

Download Python for Windows from: https://www.python.org/downloads/windows/ You can also use choco to install it: choco install python

For MacOS

Run:

brew install python
brew install python-tk

Install certificates by doing:

Macintosh HD > Applications > Python Folder > double click on "Install Certificates.command" file.

For Linux

You probably already have it installed. See your package manager of choice to install it.

Install spotify2ytmusic (via pip)

This package is available on pip, so you can install it using: pip install spotify2ytmusic or: python3 -m pip install spotify2ytmusic

(Or) Running From Source

(Not recommended)

Another option, instead of pip, is to just clone this repo and run directly from the source. However, you will need the "ytmusicapi" package installed, so you'll probably want to use pip to install that at the very least.

To run directly from source:

Setup Instructions

1. Create a Virtual Environment & Install Required Packages

Start by creating and activating a Python virtual environment to isolate dependencies.

git clone git@github.com:linsomniac/spotify_to_ytmusic.git
cd spotify_to_ytmusic

python -m venv .venv
.venv\Scripts\activate

pip install ytmusicapi
pip install tk
pip install spotify2ytmusic

2. Generate YouTube Music Credentials

To use the YouTube Music API, you need to generate valid credentials. Follow these steps:

  1. Log in to YouTube Music: Open YouTube Music in Firefox and ensure you are logged in.

  2. Open the Inspection Tool: Press F12 to open the browser’s inspection tool.

  3. Access the Network Tab: Navigate to the Network tab and filter by /browse.

  4. Select a Request: Click on one of the requests under the filtered results and locate the Request Headers section.

  5. Toggle RAW View: Click on the RAW toggle button to view the headers in raw format.

  6. Copy Headers: Right-click, choose Select All, and then copy the content.

  7. Paste into raw_headers.txt: Open the raw_headers.txt file located in the main directory of this project and paste the copied content into it.

  8. Run the Script: Execute the following command to generate the credentials file:

    py generate_ytmusic_credentials.py
    
  9. Done: Your YouTube Music credentials are now ready.


3. Backup Your Spotify Data

Run the Spotify backup script to save your playlists and liked songs locally.

py spotify2ytmusic/spotify-backup.py

This step will generate a playlists.json file containing your Spotify data.


5. Use the GUI for Migration

Now you can use the graphical user interface (GUI) to migrate your playlists and liked songs to YouTube Music.

Start the GUI with the following command:

python -m spotify2ytmusic gui

GUI Features

Once the GUI is running, you can:

  • Load Liked Songs: Migrate your Spotify liked songs to YouTube Music.
  • List Playlists: View your playlists and their details.
  • Copy All Playlists: Migrate all Spotify playlists to YouTube Music.
  • Copy a Specific Playlist: Select and migrate a specific Spotify playlist to YouTube Music.

Import Your Liked Songs - Tab 3

Click the import button, and wait until it finished and switched to the next tab

It will go through your Spotify liked songs, and like them on YTMusic. It will display the song from spotify and then the song that it found on YTMusic that it is liking. I've spot-checked my songs and it seems to be doing a good job of matching YTMusic songs with Spotify. So far I haven't seen a single failure across a couple hundread songs, but more esoteric titles it may have issues with.

List Your Playlists - Tab 4

Click the list button, and wait until it finished and switched to the next tab

This will list the playlists you have on both Spotify and YTMusic, so you can individually copy them.

Copy Your Playlists - Tab 5

You can either copy all playlists, or do a more surgical copy of individual playlists. Copying all playlists will use the name of the Spotify playlist as the destination playlist name on YTMusic.

To copy all the playlists click the copy button, and wait until it finished and switched to the next tab

NOTE: This does not copy the Liked playlist (see above to do that).

Copy specific Playlist - Tab 6

In the list output, find the "playlist id" (the first column) of the Spotify playlist and of the YTMusic playlist.

Then fill both input fields and click the copy button

The copy playlist will take the name of the YTMusic playlist and will create the playlist if it does not exist, if you start the YTMusic playlist with a "+":

Re-running "copy_playlist" or "load_liked" in the event that it fails should be safe, it will not duplicate entries on the playlist.

Command Line Usage

Login to YTMusic

ytmusicapi oauth or s2yt_ytoauth or python -m spotify2ytmusic ytoauth

This will give you a URL, visit that URL and authorize the application. When you are done with the import you can remove the authorization for this app.

This will write a file "oauth.json". Keep this file secret while the app is authorized. This file includes a logged in session token.

ytmusicapi is a dependency of this software and should be installed as part of the "pip install".

Backup Your Spotify Playlists

Download spotify-backup.

Run spotify-backup.py and it will help you authorize access to your spotify account.

Run: python3 spotify-backup.py playlists.json --dump=liked,playlists --format=json

This will save your playlists and liked songs into the file "playlists.json".

Import Your Liked Songs

Run: s2yt_load_liked

It will go through your Spotify liked songs, and like them on YTMusic. It will display the song from spotify and then the song that it found on YTMusic that it is liking. I've spot-checked my songs and it seems to be doing a good job of matching YTMusic songs with Spotify. So far I haven't seen a single failure across a couple thousand songs, but more esoteric titles it may have issues with.

Import Your Liked Albums

Run: s2yt_load_liked_albums

Spotify stores liked albums outside of the "Liked Songs" playlist. This is the command to load your liked albums into YTMusic liked songs.

List Your Playlists

Run s2yt_list_playlists

This will list the playlists you have on both Spotify and YTMusic. You will need to individually copy them.

Copy Your Playlists

You can either copy all playlists, or do a more surgical copy of individual playlists. Copying all playlists will use the name of the Spotify playlist as the destination playlist name on YTMusic. To copy all playlists, run:

s2yt_copy_all_playlists

NOTE: This does not copy the Liked playlist (see above to do that).

In the list output above, find the "playlist id" (the first column) of the Spotify playlist, and of the YTMusic playlist, and then run:

s2yt_copy_playlist <SPOTIFY_PLAYLIST_ID> <YTMUSIC_PLAYLIST_ID>

If you need to create a playlist, you can run:

s2yt_create_playlist "<PLAYLIST_NAME>"

Or the copy playlist can take the name of the YTMusic playlist and will create the playlist if it does not exist, if you start the YTMusic playlist with a "+":

s2yt_copy_playlist <SPOTIFY_PLAYLIST_ID> +<YTMUSIC_PLAYLIST_NAME>

For example:

s2yt_copy_playlist SPOTIFY_PLAYLIST_ID "+Feeling Like a PUNK"

Re-running "copy_playlist" or "load_liked" in the event that it fails should be safe, it will not duplicate entries on the playlist.

Searching for YTMusic Tracks

This is mostly for debugging, but there is a command to search for tracks in YTMusic:

s2yt_search --artist <ARTIST> --album <ALBUM> <TRACK_NAME>

Details About Search Algorithms

The function first searches for albums by the given artist name on YTMusic.

It then iterates over the first three album results and tries to find a track with the exact same name as the given track name. If it finds a match, it returns the track information.

If the function can't find the track in the albums, it then searches for songs by the given track name and artist name.

Depending on the yt_search_algo parameter, it performs one of the following actions:

If yt_search_algo is 0, it simply returns the first song result.

If yt_search_algo is 1, it iterates over the song results and returns the first song that matches the track name, artist name, and album name exactly. If it can't find a match, it raises a ValueError.

If yt_search_algo is 2, it performs a fuzzy match. It removes everything in brackets in the song title and checks for a match with the track name, artist name, and album name. If it can't find a match, it then searches for videos with the track name and artist name. If it still can't find a match, it raises a ValueError.

If the function can't find the track using any of the above methods, it raises a ValueError.

FAQ

  • Does this run on mobile?

No, this runs on Linux/Windows/MacOS.

  • I get "No matching distribution found for spotify2ytmusic".

    This has been reported in Issue #39 and it seems like a mismatch between python versions. Users there, on MacOS, needed to install a specific version of Python, and then use the matching version of PIP:

    brew install python@3.10
    brew install python-tk@3.10
    pip3.10 install spotify2ytmusic
    
  • How does the lookup algorithm work?

    Given the Spotify track information, it does a lookup for the album by the same artist on YTMusic, then looks at the first 3 hits looking for a track with exactly the same name. In the event that it can't find that exact track, it then does a search of songs for the track name by the same artist and simply returns the first hit.

    The idea is that finding the album and artist and then looking for the exact track match will be more likely to be accurate than searching for the song and artist and relying on the YTMusic algorithm to figure things out, especially for short tracks that might be have many contradictory hits like "Survival by Yes".

  • My copy is failing with repeated "ERROR: (Retrying) Server returned HTTP 400: Bad Request".

    Try running with "--track-sleep=3" argument to do a 3 second sleep between tracks. This will take much longer, but may succeed where faster rates have failed.

License

Creative Commons Zero v1.0 Universal

spotify-backup.py licensed under MIT License. See https://github.com/caseychu/spotify-backup for more information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spotify2ytmusicv2-0.2.2.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spotify2ytmusicv2-0.2.2-py3-none-any.whl (24.4 kB view details)

Uploaded Python 3

File details

Details for the file spotify2ytmusicv2-0.2.2.tar.gz.

File metadata

  • Download URL: spotify2ytmusicv2-0.2.2.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.8 Windows/10

File hashes

Hashes for spotify2ytmusicv2-0.2.2.tar.gz
Algorithm Hash digest
SHA256 5865c65b030f3c3106fa6a81c5c8fd1ae799bd8e1c572940b2f8e75ecedff4d0
MD5 6e2051fba2cef40bc9448dbda4a69a9b
BLAKE2b-256 fa43cad49060f9a9a3d665da9cf8c4745246718d24e96afff4aac8fba6d816d0

See more details on using hashes here.

File details

Details for the file spotify2ytmusicv2-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: spotify2ytmusicv2-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.8 Windows/10

File hashes

Hashes for spotify2ytmusicv2-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8d3170d408d564755acd1f0fe9e04b57f2285e364a7ed1034364e9257a675368
MD5 e1c798746c39ce66e2ed61873fe9c015
BLAKE2b-256 2e4eb2234b5f8fe1422720f442a33a27a97326a6cce208352ff6d767f249fa5c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page