Added decipher_info function for converting from video_basic_info to video_info data.
 Changed SpotifyAlbum property from trackCount to tracksCount
 Added getFreeClientID to get free soundCloud client ID.
This commit is contained in:
Killer069
2021-10-18 17:22:29 +05:30
committed by GitHub
4 changed files with 36 additions and 5 deletions

View File

@@ -12,6 +12,20 @@ let data = await soundcloud(url) //Gets the data
console.log(data.type) // Console logs the type of data that you got.
```
### getFreeClientID()
_This returns free client ID._
```js
const client_id = await getFreeClientID()
setToken({
soundcloud : {
client_id : client_id
}
}) // This will set client ID for use in play-dl.
```
## Validate
### so_validate(url : `string`)