diff options
Diffstat (limited to 'doc/user.rst')
-rw-r--r-- | doc/user.rst | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/doc/user.rst b/doc/user.rst index 5ab9539db..ea65442b2 100644 --- a/doc/user.rst +++ b/doc/user.rst @@ -365,10 +365,14 @@ More information can be found in the :ref:`decoder_plugins` reference. Configuring encoder plugins --------------------------- -Encoders are used by some of the output plugins (such as shout). The encoder settings are included in the audio_output section. +Encoders are used by some of the output plugins (such as shout). The +encoder settings are included in the ``audio_output`` section, see :ref:`config_audio_output`. More information can be found in the :ref:`encoder_plugins` reference. + +.. _config_audio_output: + Configuring audio outputs ------------------------- @@ -421,6 +425,15 @@ The following table lists the audio_output options valid for all plugins: implement an external mixer :ref:`external_mixer`) or no mixer (:samp:`none`). By default, the hardware mixer is used for devices which support it, and none for the others. + * - **filters "name,...**" + - The specified configured filters are instantiated in the given + order. Each filter name refers to a ``filter`` block, see + :ref:`config_filter`. + +More information can be found in the :ref:`output_plugins` reference. + + +.. _config_filter: Configuring filters ------------------- @@ -436,6 +449,9 @@ To configure a filter, add a :code:`filter` block to :file:`mpd.conf`: name "software volume" } +Configured filters may then be added to the ``filters`` setting of an +``audio_output`` section, see :ref:`config_audio_output`. + The following table lists the filter options valid for all plugins: .. list-table:: @@ -449,6 +465,9 @@ The following table lists the filter options valid for all plugins: * - **name** - The name of the filter +More information can be found in the :ref:`filter_plugins` reference. + + Configuring playlist plugins ---------------------------- |