stream: Move mopidy.{backends => }.stream

This commit is contained in:
Stein Magnus Jodal 2014-01-11 15:10:37 +01:00
parent 7ab8fd8861
commit 120c381285
7 changed files with 6 additions and 6 deletions

View File

@ -54,4 +54,4 @@ Backend implementations
* :mod:`mopidy.backends.dummy` * :mod:`mopidy.backends.dummy`
* :mod:`mopidy.backends.local` * :mod:`mopidy.backends.local`
* :mod:`mopidy.backends.stream` * :mod:`mopidy.stream`

View File

@ -708,9 +708,9 @@ throughout Mopidy.
**Stream backend** **Stream backend**
We've added a new backend for playing audio streams, the :mod:`stream backend We've added a new backend for playing audio streams, the :mod:`stream backend
<mopidy.backends.stream>`. It is activated by default. The stream backend <mopidy.stream>`. It is activated by default. The stream backend supports the
supports the intersection of what your GStreamer installation supports and what intersection of what your GStreamer installation supports and what protocols
protocols are included in the :attr:`mopidy.settings.STREAM_PROTOCOLS` setting. are included in the :attr:`mopidy.settings.STREAM_PROTOCOLS` setting.
Current limitations: Current limitations:

View File

@ -20,7 +20,7 @@ None. The extension just needs Mopidy.
Default configuration Default configuration
===================== =====================
.. literalinclude:: ../../mopidy/backends/stream/ext.conf .. literalinclude:: ../../mopidy/stream/ext.conf
:language: ini :language: ini

View File

@ -44,7 +44,7 @@ setup(
'http = mopidy.http:Extension [http]', 'http = mopidy.http:Extension [http]',
'local = mopidy.backends.local:Extension', 'local = mopidy.backends.local:Extension',
'mpd = mopidy.mpd:Extension', 'mpd = mopidy.mpd:Extension',
'stream = mopidy.backends.stream:Extension', 'stream = mopidy.stream:Extension',
], ],
}, },
classifiers=[ classifiers=[