- This topic has 1 reply, 1 voice, and was last updated 2 months, 2 weeks ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.

Uniting People
What makes us different from other similar websites? › Forums › Tech › Music Download Spotify/Youtube [Linux]
Tagged: download music, Linux, mp3, music save, Spotify, YouTube
$ python3 -m venv my_project_venv
$ source my_project_venv/bin/activate
$ pip install spotdl
$ mkdir mp3
$ cd mp3
$ spotdl [LINK]
$ cd ..
$ rm -rfv my_project_venv
YouTube Music Download
Note: Make sure to change USERNAME and PLAYLIST_HERE in the second command.
$ mkdir -p ~/Downloads/mp3
$ yt-dlp -x --audio-format mp3 \ --audio-quality 0 \ --embed-thumbnail --add-metadata \ -o "/home/USERNAME/Downloads/mp3/%(playlist_index)s - %(title)s.%(ext)s" \ "PLAYLIST_HERE"