Adds a basic streaming backend simply handles streaming audio and nothing else. I.e. no metadata beyond the URI we where given. #270 still needs to be solved for actual metadata to make sense in this backend.
24 lines
438 B
Python
24 lines
438 B
Python
"""A backend for playing music for streaming music.
|
|
|
|
This backend will handle streaming of URIs in
|
|
:attr:`mopidy.settings.STREAM_PROTOCOLS` assuming the right plugins are
|
|
installed.
|
|
|
|
**Issues:**
|
|
|
|
https://github.com/mopidy/mopidy/issues?labels=Stream+backend
|
|
|
|
**Dependencies:**
|
|
|
|
- None
|
|
|
|
**Settings:**
|
|
|
|
- :attr:`mopidy.settings.STREAM_PROTOCOLS`
|
|
"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
# flake8: noqa
|
|
from .actor import StreamBackend
|