Reference relevant settings from all backends, frontends, mixers and outputs
This commit is contained in:
parent
c7c08f8457
commit
c34dcd583b
@ -16,6 +16,12 @@ class LibspotifyBackend(BaseBackend):
|
|||||||
|
|
||||||
**Issues:** http://github.com/jodal/mopidy/issues/labels/backend-libspotify
|
**Issues:** http://github.com/jodal/mopidy/issues/labels/backend-libspotify
|
||||||
|
|
||||||
|
**Settings:**
|
||||||
|
|
||||||
|
- :attr:`mopidy.settings.SPOTIFY_LIB_CACHE`
|
||||||
|
- :attr:`mopidy.settings.SPOTIFY_USERNAME`
|
||||||
|
- :attr:`mopidy.settings.SPOTIFY_PASSWORD`
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
This product uses SPOTIFY(R) CORE but is not endorsed, certified or
|
This product uses SPOTIFY(R) CORE but is not endorsed, certified or
|
||||||
|
|||||||
@ -18,6 +18,12 @@ class LocalBackend(BaseBackend):
|
|||||||
A backend for playing music from a local music archive.
|
A backend for playing music from a local music archive.
|
||||||
|
|
||||||
**Issues:** http://github.com/jodal/mopidy/issues/labels/backend-local
|
**Issues:** http://github.com/jodal/mopidy/issues/labels/backend-local
|
||||||
|
|
||||||
|
**Settings:**
|
||||||
|
|
||||||
|
- :attr:`mopidy.settings.LOCAL_MUSIC_FOLDER`
|
||||||
|
- :attr:`mopidy.settings.LOCAL_PLAYLIST_FOLDER`
|
||||||
|
- :attr:`mopidy.settings.LOCAL_TAG_CACHE`
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|||||||
@ -4,6 +4,11 @@ from mopidy.frontends.mpd.process import MpdProcess
|
|||||||
class MpdFrontend(object):
|
class MpdFrontend(object):
|
||||||
"""
|
"""
|
||||||
The MPD frontend.
|
The MPD frontend.
|
||||||
|
|
||||||
|
**Settings:**
|
||||||
|
|
||||||
|
- :attr:`mopidy.settings.MPD_SERVER_HOSTNAME`
|
||||||
|
- :attr:`mopidy.settings.MPD_SERVER_PORT`
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|||||||
@ -4,6 +4,10 @@ class BaseMixer(object):
|
|||||||
"""
|
"""
|
||||||
:param backend: a backend instance
|
:param backend: a backend instance
|
||||||
:type mixer: :class:`mopidy.backends.base.BaseBackend`
|
:type mixer: :class:`mopidy.backends.base.BaseBackend`
|
||||||
|
|
||||||
|
**Settings:**
|
||||||
|
|
||||||
|
- :attr:`mopidy.settings.MIXER_MAX_VOLUME`
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, backend, *args, **kwargs):
|
def __init__(self, backend, *args, **kwargs):
|
||||||
|
|||||||
@ -10,6 +10,10 @@ class AlsaMixer(BaseMixer):
|
|||||||
"""
|
"""
|
||||||
Mixer which uses the Advanced Linux Sound Architecture (ALSA) to control
|
Mixer which uses the Advanced Linux Sound Architecture (ALSA) to control
|
||||||
volume.
|
volume.
|
||||||
|
|
||||||
|
**Settings:**
|
||||||
|
|
||||||
|
- :attr:`mopidy.settings.MIXER_ALSA_CONTROL`
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|||||||
@ -18,6 +18,10 @@ class GStreamerOutput(object):
|
|||||||
Audio output through GStreamer.
|
Audio output through GStreamer.
|
||||||
|
|
||||||
Starts the :class:`GStreamerProcess`.
|
Starts the :class:`GStreamerProcess`.
|
||||||
|
|
||||||
|
**Settings:**
|
||||||
|
|
||||||
|
- :attr:`mopidy.settings.GSTREAMER_AUDIO_SINK`
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, core_queue, output_queue):
|
def __init__(self, core_queue, output_queue):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user