Skip to content

Extra goodies for mopidy, including the ability to control a mopidy instance using Twitter.

Notifications You must be signed in to change notification settings

swinton/mopidyextra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

mopidyextra

Extra goodies for mopidy, including the ability to control a mopidy instance using Twitter.

Installation

  • Patch your mopidy install to allow custom settings.

  • Install mopidyextra.

## Configuration

  • Update your settings.py to include the path to mopidyextra:
import sys

sys.path.append("/path/to/mopidyextra")
  • Add mopidyextra.frontends.twitter.TwitterFrontend to FRONTENDS in settings.py:
FRONTENDS = (
    u'mopidy.frontends.mpd.MpdFrontend',
    u'mopidyextra.frontends.twitter.TwitterFrontend',
)
  • Add your Twitter details in settings.py:
CUSTOM_TWITTER_ACCESS_TOKEN = "{{YOUR_TWITTER_ACCESS_TOKEN}}"
CUSTOM_TWITTER_ACCESS_TOKEN_SECRET = "{{YOUR_TWITTER_ACCESS_TOKEN_SECRET}}"
CUSTOM_TWITTER_CONSUMER_KEY = "{{YOUR_TWITTER_CONSUMER_KEY}}"
CUSTOM_TWITTER_CONSUMER_SECRET = "{{YOUR_TWITTER_CONSUMER_SECRET}}"
CUSTOM_TWITTER_SCREEN_NAME = "{{YOUR_TWITTER_SCREEN_NAME}}"
  • Run mopidy as usual:

    $ mopidy

## Contact

@steveWINton.

About

Extra goodies for mopidy, including the ability to control a mopidy instance using Twitter.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages