Skip to content

yarrysmod/soundcrawler

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 

Repository files navigation

SoundCrawler

SoundCrawler is a npm module that can retrieve the file address of any song on SoundCloud.

Test it live on SoundCrawler.io

Git url : https://github.com/Antonhansel/soundcrawler


var url = 'https://soundcloud.com/aboveandbeyond/abgt109';
var soundcrawler = require('soundcrawler');

var crawler = new soundcrawler();
var download = true; //the second argument is optional. Pass it to true to download the file locally!
crawler.download(url, download,function(err){
    if (err) console.log("Error" + err);
    else {
    	console.log(crawler.downloadURL);
    	console.log(crawler.title);
    }
});

LICENSE

MIT

About

A SoundCloud crawler

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%