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

https://github.com/magcode/mopidy-soundcloudsimple

Simple soundcloud backend for mopidy
https://github.com/magcode/mopidy-soundcloudsimple

mopidy mopidy-backend soundcloud

Last synced: 11 months ago
JSON representation

Simple soundcloud backend for mopidy

Awesome Lists containing this project

README

          

# mopidy-soundcloudsimple

This is simple SoundCloud backend for Mopidy V3.

It gives you access the tracks of the users you follow. The recent 100 tracks will also be provided as a "stream" (Not to confuse with Soundscloud's own "Stream" feature)

# install
```
cd ~
git clone https://github.com/magcode/mopidy-soundcloudsimple.git
cd mopidy-soundcloudsimple
sudo python3 setup.py develop
```

# uninstall
```
cd ~/mopidy-soundcloudsimple
sudo python3 setup.py develop -u
rm -rf ~/mopidy-soundcloudsimple
```

# configuration in mopidy.conf

You need a `client_id` which you can get from [SoundCloud](https://soundcloud.com/you/apps). You may also look around and use an existing one.

The user_id is your soundcloud userID. The easiest way to get it is calling [view-source:https://soundcloud.com/stream](https://soundcloud.com/stream) and search for `soundcloud:users:`

```
[soundcloudsimple]
enabled = true
client_id =
user_id =
```