Mopidy extension for playing music from Emby
Install by running:
pip install Mopidy-Emby
or straight from GitHub:
pip install git+https://github.com/xsteadfastx/mopidy-emby#egg=mopidy-emby
Before starting Mopidy, you must add configuration for Mopidy-Emby to your Mopidy configuration file:
[emby] hostname = Emby server hostname port = Emby server port username = username password = password
Its also possible to add a users id with user_id = 0
.
- Original author: Marvin Steadfast
- Current maintainer: Marvin Steadfast
- Contributors
- added config option to define a
user_id
. This is useful if using a hidden user
- debug output for r_get data
- fixed artist lookup
- more testing
- fixed bug in throwing the exception in
mopidy_emby.remote.EmbyHandler.__get_search
- Emby streaming is using the static option now. This make seeking possible. This let Emby stream the original file instead of a converted mp3. Thanks to ebr.
mopidy_emby.remote.EmbyHandler.r_get
throws now a exception if cant connect
- Looking for
CollectionType
instead ofName
to find music root dir. Fixes #1
- Alot of splitting and refactoring
- Throws exception if no music root directory can be found
- SearchResults doesnt use set() no more for killing duplets
- Added searching
- Fixed setup.py requests versioning
- Initial release.