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
- Host: GitHub
- URL: https://github.com/magcode/mopidy-soundcloudsimple
- Owner: magcode
- License: apache-2.0
- Created: 2020-07-04T07:27:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-13T15:36:06.000Z (about 4 years ago)
- Last Synced: 2025-01-28T14:45:29.636Z (about 1 year ago)
- Topics: mopidy, mopidy-backend, soundcloud
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 =
```