config: Deprecate audio/mixer_track
This commit is contained in:
parent
810429a449
commit
3daea856b1
@ -91,14 +91,6 @@ Audio configuration
|
|||||||
Setting the config value to blank leaves the audio mixer volume unchanged.
|
Setting the config value to blank leaves the audio mixer volume unchanged.
|
||||||
For the software mixer blank means 100.
|
For the software mixer blank means 100.
|
||||||
|
|
||||||
.. confval:: audio/mixer_track
|
|
||||||
|
|
||||||
Audio mixer track to use.
|
|
||||||
|
|
||||||
Name of the mixer track to use. If this is not set we will try to find the
|
|
||||||
master output track. As an example, using ``alsamixer`` you would typically
|
|
||||||
set this to ``Master`` or ``PCM``.
|
|
||||||
|
|
||||||
.. confval:: audio/output
|
.. confval:: audio/output
|
||||||
|
|
||||||
Audio output to use.
|
Audio output to use.
|
||||||
|
|||||||
@ -24,7 +24,7 @@ _loglevels_schema = LogLevelConfigSchema('loglevels')
|
|||||||
|
|
||||||
_audio_schema = ConfigSchema('audio')
|
_audio_schema = ConfigSchema('audio')
|
||||||
_audio_schema['mixer'] = String()
|
_audio_schema['mixer'] = String()
|
||||||
_audio_schema['mixer_track'] = String(optional=True)
|
_audio_schema['mixer_track'] = Deprecated()
|
||||||
_audio_schema['mixer_volume'] = Integer(optional=True, minimum=0, maximum=100)
|
_audio_schema['mixer_volume'] = Integer(optional=True, minimum=0, maximum=100)
|
||||||
_audio_schema['output'] = String()
|
_audio_schema['output'] = String()
|
||||||
_audio_schema['visualizer'] = String(optional=True)
|
_audio_schema['visualizer'] = String(optional=True)
|
||||||
|
|||||||
@ -6,7 +6,6 @@ config_file =
|
|||||||
|
|
||||||
[audio]
|
[audio]
|
||||||
mixer = software
|
mixer = software
|
||||||
mixer_track =
|
|
||||||
mixer_volume =
|
mixer_volume =
|
||||||
output = autoaudiosink
|
output = autoaudiosink
|
||||||
visualizer =
|
visualizer =
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user