Skip to content
This repository has been archived by the owner on Feb 25, 2021. It is now read-only.
/ SpotyRIP Public archive

SpotyRIP ~ Spotify Playlist ripper ~ Interacts with Spotbash

License

Notifications You must be signed in to change notification settings

Mia-Rain/SpotyRIP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpotyRIP

SpotyRIP ~ Spotify Playlist ripper

How?

SpotyRIP uses Spotbash, along with ytdl to rip playlists. The Process is extremely simple.


  1. Use Spotbash's songs func to grab a list of songs in the currently playing Playlist
  2. Pipe this into paste -d' ' - - moving the Artist names onto the same line as the Song name
  • Send the result to a file
  1. Use a while loop to loop using each line in the list (Basically a for loop but for lines in a file)
  • From said while loop, pipe each line to ytdl's ytsearch system
    • Pipe this in jq .webpage_url
      • Pipe result into ytdl downloading the song
  1. Repeat for each song/line

Usage

Using spot(y)RIP, is also very easy to use!


Spot(y)RIP ~ Spotify Playlist ripper using ytdl
~ Interacts with Spotbash ~ Also by: That(Geeky)Weeb (Mia)
***
Usage: spotRIP.sh [-h] [ -i <PLAYLIST_ID> ] <YTDL OPTIONS>
***
Warning! All Songs on Spotify are copyrighted, rip at your own risk!

Setup

Requirements:

Spot(y)RIP requires the following in order to work;
Premium Spotify account (Spotify's API requires a premium account)
Spotbash
jq
Youtube-dl

Setup:

Install Spotbash (Follow README)
Install jq and ytdl. Super Simple! ^^


while read p; do  
	youtube-dl "$(youtube-dl ytsearch1:"$p" | jq .webpage_url)"
done <<< $(spotbash songs | paste -d' ' - - )

Above is a very simple example, although, if one has the the requiresments, it would be all that needs to be run ^^


Legal Stuff

Dear enforcers of DCMA, the purpose of Spot(y)RIP, is not to circumvent or "get around", cropyright but rather to provide offline access of playlists to Premium Spotify users without an offical client. Such as users on foreign architectures, or foreign operating systems/distros.

About

SpotyRIP ~ Spotify Playlist ripper ~ Interacts with Spotbash

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages