Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/olizilla/soundcloud-id

Guess a track id from a soundcloud url
https://github.com/olizilla/soundcloud-id

Last synced: 9 days ago
JSON representation

Guess a track id from a soundcloud url

Awesome Lists containing this project

README

        

# soundcloud-id

Guess a soundcloud id from it's page url.

Useful for grabbing a streamable mp3 url for a given page:

```js
var scid = require('scid')
scid('/flyinglotus/flying-lotus-kingmidas-lost', function (err, id) {
console.log('http://media.soundcloud.com/stream/' + id + '.mp3')
})
```

http://media.soundcloud.com/stream/kllR7tKcPnL3.mp3

----

[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)