#Spotify Downloader
Downloads individual songs or playlists from Spotify as mp3 files. Songs are sourced from videos posted on youtube and song metadata is from the Spotify API
###Features
##Dependencies FFMPEG - https://www.ffmpeg.org/
##Usage
var downloader = require('spotify-downloader');
downloader.downloadTrack('spotify:track:2P4OICZRVAQcYAV2JReRfj', "song.mp3", function (err){
if (err){
console.log("download failed");
}else{
console.log("track download succeeded");
}
})
downloader.downloadPlaylist('spotify:user:jackke1:playlist:02fquJWP9c20cobDsJrzfB', "playlist-directory", function (err){
if (err){
console.log("download failed");
}else{
console.log("playlist download succeeded");
}
})
Version | Tag | Published |
---|---|---|
1.0.0 | latest | 6yrs ago |