
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
soundcloud-downloader
Advanced tools
Download Soundcloud tracks with Node.js
npm install soundcloud-downloader
I couldn't find any packages that worked with a Discord bot I was working on so I created my own.
Here are the two most commonly used functions:
Read the docs for more.
The easiest way to get Soundcloud audio is with the scdl.download(url: string)
function, which returns a Promise containing a ReadableStream.
const scdl = require('soundcloud-downloader').default
const fs = require('fs')
const SOUNDCLOUD_URL = 'https://soundcloud.com/askdjfhaklshf'
const CLIENT_ID = 'asdhkalshdkhsf'
scdl.download(SOUNDCLOUD_URL).then(stream => stream.pipe(fs.createWriteStream('audio.mp3')))
You can do anything you like with the stream that is returned, an example with Discord.js:
const client = new Discord.Client()
const url = 'https://soundcloud.com/taliya-jenkins/double-cheese-burger-hold-the'
const clientID = 'asdlkajasd'
const channelID = '123456789'
client.on('ready', () => {
const channel = client.channels.cache.get(channelID)
channel.join().then(connection => {
scdl.download(url, clientID).then(stream => {
connection.play(stream)
})
})
})
You can also create a custom instance of the SCDL class with settings configured to your liking:
const scdlCreate = require('../').create
const axios = require('axios').default
const scdl = scdlCreate({
clientID: 'adasdasd',
saveClientID: true,
filePath: './client_id.json',
axiosInstance: axios.create()
})
You can view the code for these examples and find more in the example folder.
You can obtain a Client ID by visting the Soundcloud website and inspecting network traffic (perhaps with Chrome DevTools or some HTTP proxy software) and looking for any requests to the Soundcloud API. Ex:
https://api-v2.soundcloud.com/me/play-history/tracks?client_id={CLIENT ID IS HERE}&limit=25&offset=0&linked_partitioning=1&app_version=1590494738&app_locale=en
Here is a picture of where you should be able to find it:
If I have the time and there is enough demand, I am interested in implementing the following functionalities:
If you have any feature requests, suggestions or questions do not hesistate to post them in the issues section
I do not support piracy and this package is not designed for circumventing the technological measures employed by SoundCloud preventing unauthorized access to copyrighted works. This package is only for downloading audio you have access to.
FAQs
Download Soundcloud audio with Node.js
The npm package soundcloud-downloader receives a total of 6,731 weekly downloads. As such, soundcloud-downloader popularity was classified as popular.
We found that soundcloud-downloader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.