2009-03-12 17:06:48 +01:00
|
|
|
<?xml version='1.0' encoding="utf-8"?>
|
2016-04-22 10:04:29 +02:00
|
|
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
|
|
|
|
|
2009-03-12 17:06:48 +01:00
|
|
|
<book>
|
|
|
|
<title>The Music Player Daemon - User's Manual</title>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<chapter id="intro">
|
2009-03-12 17:06:48 +01:00
|
|
|
<title>Introduction</title>
|
|
|
|
|
|
|
|
<para>
|
2009-06-02 21:09:46 +02:00
|
|
|
This document is work in progress. Most of it may be incomplete
|
|
|
|
yet. Please help!
|
2009-03-12 17:06:48 +01:00
|
|
|
</para>
|
2009-06-30 07:31:09 +02:00
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> (Music Player Daemon) is, as the
|
|
|
|
name suggests, a server software allowing you to remotely play
|
|
|
|
your music, handle playlists, deliver music (HTTP streams with
|
2015-08-11 18:57:50 +02:00
|
|
|
various sub-protocols) and organize playlists.
|
2009-06-30 07:31:09 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
It has been written with minimal resource usage and stability in
|
|
|
|
mind! Infact, it runs fine on a Pentium 75, allowing you to use
|
|
|
|
your cheap old PC to create a stereo system!
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> supports also gapless playback,
|
|
|
|
buffered audio output, and crossfading!
|
2009-06-30 07:31:09 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The separate client and server design allows users to choose a
|
|
|
|
user interface that best suites their tastes independently of
|
|
|
|
the underlying daemon, which actually plays music!
|
|
|
|
</para>
|
2009-03-12 17:06:48 +01:00
|
|
|
</chapter>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<chapter id="install">
|
2009-03-12 17:06:48 +01:00
|
|
|
<title>Installation</title>
|
|
|
|
|
2009-03-12 17:12:53 +01:00
|
|
|
<para>
|
|
|
|
We recommend that you use the software installation routines of
|
2014-08-24 12:42:00 +02:00
|
|
|
your distribution to install <application>MPD</application>.
|
|
|
|
Most operating systems have a <application>MPD</application>
|
|
|
|
package, which is very easy to install.
|
2009-03-12 17:12:53 +01:00
|
|
|
</para>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="install_debian">
|
2009-03-12 17:12:53 +01:00
|
|
|
<title>Installing on Debian/Ubuntu</title>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
Install the package <application>MPD</application> via APT:
|
2009-03-12 17:12:53 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>apt-get install mpd</programlisting>
|
2009-06-30 07:31:09 +02:00
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
When installed this way, <application>MPD</application> by
|
|
|
|
default looks for music in
|
|
|
|
<filename>/var/lib/mpd/music/</filename>; this may not be
|
|
|
|
correct. Look at your <filename>/etc/mpd.conf</filename>
|
|
|
|
file...
|
2009-06-30 07:31:09 +02:00
|
|
|
</para>
|
2009-03-12 17:12:53 +01:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="install_source">
|
2009-03-12 17:06:48 +01:00
|
|
|
<title>Compiling from source</title>
|
|
|
|
|
|
|
|
<para>
|
2009-03-12 17:12:53 +01:00
|
|
|
Download the source tarball from <ulink
|
2014-08-24 12:42:00 +02:00
|
|
|
url="http://www.musicpd.org/download.html">the
|
|
|
|
<application>MPD</application> home page</ulink> and unpack
|
|
|
|
it:
|
2009-03-12 17:12:53 +01:00
|
|
|
</para>
|
|
|
|
|
2013-11-08 12:29:04 +01:00
|
|
|
<programlisting>tar xf mpd-version.tar.xz
|
2009-06-30 07:31:09 +02:00
|
|
|
cd mpd-version</programlisting>
|
2009-03-12 17:12:53 +01:00
|
|
|
|
|
|
|
<para>
|
|
|
|
Make sure that all the required libraries and build tools are
|
|
|
|
installed. The <filename>INSTALL</filename> file has a list.
|
|
|
|
</para>
|
|
|
|
|
2014-01-28 23:09:22 +01:00
|
|
|
<para>
|
|
|
|
For example, the following installs a fairly complete list of
|
|
|
|
build dependencies on Debian Wheezy:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>
|
2014-12-26 14:00:50 +01:00
|
|
|
apt-get install g++ \
|
2014-01-28 23:09:22 +01:00
|
|
|
libmad0-dev libmpg123-dev libid3tag0-dev \
|
|
|
|
libflac-dev libvorbis-dev libopus-dev \
|
|
|
|
libadplug-dev libaudiofile-dev libsndfile1-dev libfaad-dev \
|
|
|
|
libfluidsynth-dev libgme-dev libmikmod2-dev libmodplug-dev \
|
|
|
|
libmpcdec-dev libwavpack-dev libwildmidi-dev \
|
|
|
|
libsidplay2-dev libsidutils-dev libresid-builder-dev \
|
|
|
|
libavcodec-dev libavformat-dev \
|
|
|
|
libmp3lame-dev \
|
2014-12-26 13:56:26 +01:00
|
|
|
libsamplerate0-dev libsoxr-dev \
|
2014-01-28 23:09:22 +01:00
|
|
|
libbz2-dev libcdio-paranoia-dev libiso9660-dev libmms-dev \
|
|
|
|
libzzip-dev \
|
2014-12-26 13:56:26 +01:00
|
|
|
libcurl4-gnutls-dev libyajl-dev libexpat-dev \
|
2014-01-28 23:09:22 +01:00
|
|
|
libasound2-dev libao-dev libjack-jackd2-dev libopenal-dev \
|
|
|
|
libpulse-dev libroar-dev libshout3-dev \
|
|
|
|
libmpdclient-dev \
|
2014-12-26 13:56:26 +01:00
|
|
|
libnfs-dev libsmbclient-dev \
|
|
|
|
libupnp-dev \
|
2014-01-28 23:09:22 +01:00
|
|
|
libavahi-client-dev \
|
|
|
|
libsqlite3-dev \
|
|
|
|
libsystemd-daemon-dev libwrap0-dev \
|
|
|
|
libcppunit-dev xmlto \
|
2014-06-11 08:38:57 +02:00
|
|
|
libboost-dev \
|
2015-06-27 16:06:28 +02:00
|
|
|
libicu-dev
|
2014-01-28 23:09:22 +01:00
|
|
|
</programlisting>
|
|
|
|
|
2009-03-12 17:12:53 +01:00
|
|
|
<para>
|
|
|
|
Now configure the source tree:
|
2009-03-12 17:06:48 +01:00
|
|
|
</para>
|
2009-03-12 17:12:53 +01:00
|
|
|
|
|
|
|
<programlisting>./configure</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <parameter>--help</parameter> argument shows a list of
|
|
|
|
compile-time options. When everything is ready and
|
|
|
|
configured, compile:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>make</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
And install:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>make install</programlisting>
|
2009-03-12 17:06:48 +01:00
|
|
|
</section>
|
2012-02-13 20:48:51 +01:00
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="systemd_socket">
|
2012-02-13 20:48:51 +01:00
|
|
|
<title><filename>systemd</filename> socket activation</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Using <filename>systemd</filename>, you can launch
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> on demand when the first client
|
2014-02-12 21:22:36 +01:00
|
|
|
attempts to connect.
|
2012-02-13 20:48:51 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> comes with two
|
|
|
|
<application>systemd</application> unit files: a "service"
|
|
|
|
unit and a "socket" unit. These will only be installed when
|
|
|
|
<application>MPD</application> was configured with
|
2016-12-13 10:23:57 +01:00
|
|
|
<parameter>--with-systemdsystemunitdir=/lib/systemd/system</parameter>.
|
2012-02-13 20:48:51 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-02-12 21:22:36 +01:00
|
|
|
To enable socket activation, type:
|
2012-02-13 20:48:51 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>systemctl enable mpd.socket
|
|
|
|
systemctl start mpd.socket</programlisting>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
In this configuration, <application>MPD</application> will
|
|
|
|
ignore the <varname>bind_to_address</varname> and
|
2012-02-13 20:48:51 +01:00
|
|
|
<varname>port</varname> settings.
|
|
|
|
</para>
|
|
|
|
</section>
|
2016-12-13 08:41:55 +01:00
|
|
|
|
|
|
|
<section id="systemd_user">
|
|
|
|
<title><filename>systemd</filename> user unit</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
You can launch <application>MPD</application> as a
|
|
|
|
<filename>systemd</filename> user unit. The service file will
|
|
|
|
only be installed when <application>MPD</application> was
|
|
|
|
configured with
|
|
|
|
<parameter>--with-systemduserunitdir=/usr/lib/systemd/user</parameter>
|
|
|
|
or
|
|
|
|
<parameter>--with-systemduserunitdir=$HOME/.local/share/systemd/user</parameter>.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Once the user unit is installed, you can start and stop
|
|
|
|
<application>MPD</application> like any other service:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>systemctl --user start mpd</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
To auto-start <application>MPD</application> upon login, type:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>systemctl --user enable mpd</programlisting>
|
|
|
|
</section>
|
2009-03-12 17:06:48 +01:00
|
|
|
</chapter>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<chapter id="config">
|
2009-03-12 17:06:48 +01:00
|
|
|
<title>Configuration</title>
|
|
|
|
|
2017-01-03 20:15:23 +01:00
|
|
|
<section id="config_file">
|
|
|
|
<title>The Configuration File</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
<application>MPD</application> reads its configuration from a
|
|
|
|
text file. Usually, that is
|
|
|
|
<filename>/etc/mpd.conf</filename>, unless a different path is
|
|
|
|
specified on the command line. If you run
|
|
|
|
<application>MPD</application> as a user daemon (and not as a
|
|
|
|
system daemon), the configuration is read from
|
|
|
|
<filename>$XDG_CONFIG_HOME/mpd/mpd.conf</filename> (usually
|
|
|
|
<filename>~/.config/mpd/mpd.conf</filename>).
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Each line in the configuration file contains a setting name
|
|
|
|
and its value, e.g.:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>connection_timeout "5"</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Some of the settings are grouped in blocks with curly braces,
|
|
|
|
e.g. per-plugin settings:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>audio_output {
|
|
|
|
type "alsa"
|
|
|
|
name "My ALSA output"
|
|
|
|
device "iec958:CARD=Intel,DEV=0"
|
|
|
|
mixer_control "PCM"
|
|
|
|
}</programlisting>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_music_directory">
|
2009-04-10 09:13:59 +02:00
|
|
|
<title>Configuring the music directory</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
When you play local files, you should organize them within a
|
|
|
|
directory called the "music directory". This is configured in
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> with the
|
|
|
|
<varname>music_directory</varname> setting.
|
2009-04-10 09:13:59 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
By default, <application>MPD</application> follows symbolic
|
|
|
|
links in the music directory. This behavior can be switched
|
|
|
|
off: <varname>follow_outside_symlinks</varname> controls
|
|
|
|
whether <application>MPD</application> follows links pointing
|
|
|
|
to files outside of the music directory, and
|
|
|
|
<varname>follow_inside_symlinks</varname> lets you disable
|
|
|
|
symlinks to files inside the music directory.
|
2009-04-10 09:13:59 +02:00
|
|
|
</para>
|
2014-02-08 00:09:53 +01:00
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Instead of using local files, you can use <link
|
|
|
|
linkend="storage_plugins">storage plugins</link> to access
|
|
|
|
files on a remote file server. For example, to use music from
|
|
|
|
the SMB/CIFS server "myfileserver" on the share called
|
|
|
|
"Music", configure the music directory
|
2014-09-19 22:09:58 +02:00
|
|
|
"<parameter>smb://myfileserver/Music</parameter>". For a
|
|
|
|
recipe, read the <link linkend="satellite">Satellite
|
|
|
|
MPD</link> section.
|
2014-02-08 00:09:53 +01:00
|
|
|
</para>
|
2009-04-10 09:13:59 +02:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_database_plugins">
|
2012-08-08 08:34:59 +02:00
|
|
|
<title>Configuring database plugins</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
If a music directory is configured, one database plugin is
|
|
|
|
used. To configure this plugin, add a
|
|
|
|
<varname>database</varname> block to
|
|
|
|
<filename>mpd.conf</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>database {
|
|
|
|
plugin "simple"
|
|
|
|
path "/var/lib/mpd/db"
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the <varname>database</varname>
|
|
|
|
options valid for all plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>plugin</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2014-09-02 10:22:48 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
More information can be found in the <link
|
|
|
|
linkend="database_plugins">database plugin reference</link>.
|
|
|
|
</para>
|
2012-08-08 08:34:59 +02:00
|
|
|
</section>
|
|
|
|
|
2014-10-10 23:20:50 +02:00
|
|
|
<section id="config_neighbor_plugins">
|
|
|
|
<title>Configuring neighbor plugins</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
All neighbor plugins are disabled by default to avoid unwanted
|
|
|
|
overhead. To enable (and configure) a plugin, add a
|
|
|
|
<varname>neighbor</varname> block to
|
|
|
|
<filename>mpd.conf</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>neighbors {
|
|
|
|
plugin "smbclient"
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the <varname>neighbor</varname>
|
|
|
|
options valid for all plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>plugin</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
More information can be found in the <link
|
|
|
|
linkend="neighbor_plugins">neighbor plugin reference</link>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_input_plugins">
|
2009-04-25 13:22:09 +02:00
|
|
|
<title>Configuring input plugins</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
To configure an input plugin, add a <varname>input</varname>
|
|
|
|
block to <filename>mpd.conf</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>input {
|
2015-01-26 09:55:31 +01:00
|
|
|
plugin "curl"
|
|
|
|
proxy "proxy.local"
|
2009-04-25 13:22:09 +02:00
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the <varname>input</varname> options
|
|
|
|
valid for all plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>plugin</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>enabled</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Allows you to disable a input plugin without
|
|
|
|
recompiling. By default, all plugins are enabled.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2014-09-02 10:22:48 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
More information can be found in the <link
|
|
|
|
linkend="input_plugins">input plugin reference</link>.
|
|
|
|
</para>
|
2009-04-25 13:22:09 +02:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_decoder_plugins">
|
2009-04-25 13:21:45 +02:00
|
|
|
<title>Configuring decoder plugins</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Most decoder plugins do not need any special configuration.
|
|
|
|
To configure a decoder, add a <varname>decoder</varname> block
|
|
|
|
to <filename>mpd.conf</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>decoder {
|
|
|
|
plugin "wildmidi"
|
|
|
|
config_file "/etc/timidity/timidity.cfg"
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the <varname>decoder</varname>
|
|
|
|
options valid for all plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>plugin</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>enabled</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Allows you to disable a decoder plugin without
|
|
|
|
recompiling. By default, all plugins are enabled.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2014-09-02 10:22:48 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
More information can be found in the <link
|
|
|
|
linkend="decoder_plugins">decoder plugin reference</link>.
|
|
|
|
</para>
|
2009-04-25 13:21:45 +02:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_encoder_plugins">
|
2011-01-10 23:13:01 +01:00
|
|
|
<title>Configuring encoder plugins</title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Encoders are used by some of the output plugins (such as <link
|
|
|
|
linkend="shout_output"><varname>shout</varname></link>). The
|
|
|
|
encoder settings are included in the
|
|
|
|
<varname>audio_output</varname> section. More information can
|
|
|
|
be found in the <link linkend="encoder_plugins">encoder plugin
|
|
|
|
reference</link>.
|
2011-01-10 23:13:01 +01:00
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_audio_outputs">
|
2009-03-14 16:01:56 +01:00
|
|
|
<title>Configuring audio outputs</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Audio outputs are devices which actually play the audio chunks
|
2014-08-24 12:42:00 +02:00
|
|
|
produced by <application>MPD</application>. You can configure
|
|
|
|
any number of audio output devices, but there must be at least
|
|
|
|
one. If none is configured, <application>MPD</application>
|
|
|
|
attempts to auto-detect. Usually, this works quite well with
|
|
|
|
ALSA, OSS and on Mac OS X.
|
2009-03-14 16:01:56 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2017-01-03 20:28:50 +01:00
|
|
|
To configure an audio output manually, add one or more
|
|
|
|
<varname>audio_output</varname> blocks to
|
2009-03-14 16:01:56 +01:00
|
|
|
<filename>mpd.conf</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>audio_output {
|
|
|
|
type "alsa"
|
|
|
|
name "my ALSA device"
|
|
|
|
device "hw:0"
|
|
|
|
}
|
2009-04-25 13:21:36 +02:00
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the <varname>audio_output</varname>
|
|
|
|
options valid for all plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>type</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>name</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the audio output. It is visible to the
|
|
|
|
client. Some plugins also use it internally, e.g. as
|
|
|
|
a name registered in the PULSE server.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2013-12-01 18:27:18 +01:00
|
|
|
<row id="ao_format">
|
2009-04-25 13:21:36 +02:00
|
|
|
<entry>
|
|
|
|
<varname>format</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2009-10-21 23:01:04 +02:00
|
|
|
<para>
|
|
|
|
Always open the audio output with the specified audio
|
|
|
|
format (samplerate:bits:channels), regardless of the
|
|
|
|
format of the input file. This is optional for most
|
|
|
|
plugins.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
Any of the three attributes may be an asterisk to
|
|
|
|
specify that this attribute should not be enforced,
|
|
|
|
example: <parameter>48000:16:*</parameter>.
|
|
|
|
<parameter>*:*:*</parameter> is equal to not having
|
|
|
|
a <varname>format</varname> specification.
|
|
|
|
</para>
|
2010-01-15 09:23:36 +01:00
|
|
|
<para>
|
|
|
|
The following values are valid for
|
|
|
|
<varname>bits</varname>: <varname>8</varname>
|
|
|
|
(signed 8 bit integer samples),
|
|
|
|
<varname>16</varname>, <varname>24</varname> (signed
|
|
|
|
24 bit integer samples padded to 32 bit),
|
|
|
|
<varname>32</varname> (signed 32 bit integer
|
2011-10-08 10:25:06 +02:00
|
|
|
samples), <varname>f</varname> (32 bit floating
|
|
|
|
point, -1.0 to 1.0).
|
2010-01-15 09:23:36 +01:00
|
|
|
</para>
|
2009-04-25 13:21:36 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>enabled</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Specifies whether this audio output is enabled when
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> is started. By
|
|
|
|
default, all audio outputs are enabled.
|
2009-04-25 13:21:36 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
2012-09-25 23:28:53 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>tags</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-09-02 10:22:48 +02:00
|
|
|
If set to <parameter>no</parameter>, then
|
|
|
|
<application>MPD</application> will not send tags to
|
|
|
|
this output. This is only useful for output plugins
|
|
|
|
that can receive tags, for example the <link
|
|
|
|
linkend="httpd_output"><varname>httpd</varname></link>
|
|
|
|
output plugin.
|
2012-09-25 23:28:53 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
2010-03-03 20:29:33 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>always_on</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
If set to <parameter>yes</parameter>, then
|
|
|
|
<application>MPD</application> attempts to keep this
|
|
|
|
audio output always open. This may be useful for
|
|
|
|
streaming servers, when you don't want to disconnect
|
|
|
|
all listeners even when playback is accidentally
|
|
|
|
stopped.
|
2010-03-03 20:29:33 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2009-04-28 20:33:06 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
2009-07-06 22:00:50 +02:00
|
|
|
<varname>mixer_type</varname>
|
2014-12-02 18:16:33 +01:00
|
|
|
<parameter>hardware|software|null|none</parameter>
|
2009-04-28 20:33:06 +02:00
|
|
|
</entry>
|
|
|
|
<entry>
|
2009-07-06 22:00:50 +02:00
|
|
|
Specifies which mixer should be used for this audio
|
2014-09-02 10:22:48 +02:00
|
|
|
output: the hardware mixer (available for <link
|
|
|
|
linkend="alsa_output">ALSA</link>, <link
|
|
|
|
linkend="oss_output">OSS</link> and <link
|
|
|
|
linkend="pulse_output">PulseAudio</link>), the
|
2014-12-02 18:16:33 +01:00
|
|
|
software mixer, the "null" mixer
|
|
|
|
(<parameter>null</parameter>; allows setting the
|
|
|
|
volume, but with no effect) or no mixer
|
2014-08-24 12:42:00 +02:00
|
|
|
(<parameter>none</parameter>). By default, the
|
|
|
|
hardware mixer is used for devices which support it,
|
|
|
|
and none for the others.
|
2009-04-28 20:33:06 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
2010-02-16 08:55:37 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>replay_gain_handler</varname>
|
|
|
|
<parameter>software|mixer|none</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Specifies how replay gain is applied. The default is
|
2014-08-24 12:42:00 +02:00
|
|
|
<parameter>software</parameter>, which uses an
|
|
|
|
internal software volume control.
|
|
|
|
<parameter>mixer</parameter> uses the configured
|
|
|
|
(hardware) mixer control. <parameter>none</parameter>
|
|
|
|
disables replay gain on this audio output.
|
2010-02-16 08:55:37 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2009-04-25 13:21:36 +02:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
2009-07-05 06:54:45 +02:00
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_filters">
|
2009-07-05 06:54:45 +02:00
|
|
|
<title>Configuring filters</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Filters are plugins which modify an audio stream.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
To configure a filter, add a <varname>filter</varname> block
|
|
|
|
to <filename>mpd.conf</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>filter {
|
|
|
|
plugin "volume"
|
|
|
|
name "software volume"
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the <varname>filter</varname>
|
|
|
|
options valid for all plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>plugin</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>name</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the filter.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2009-10-13 16:19:21 +02:00
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_playlist_plugins">
|
2009-10-13 16:19:21 +02:00
|
|
|
<title>Configuring playlist plugins</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Playlist plugins are used to load remote playlists. This is
|
2014-08-24 12:42:00 +02:00
|
|
|
not related to <application>MPD</application>'s playlist
|
|
|
|
directory.
|
2009-10-13 16:19:21 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2011-06-27 00:00:48 +02:00
|
|
|
To configure a playlist plugin, add a
|
2009-10-13 16:19:21 +02:00
|
|
|
<varname>playlist_plugin</varname> block to
|
|
|
|
<filename>mpd.conf</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>playlist_plugin {
|
|
|
|
name "m3u"
|
|
|
|
enabled "true"
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the
|
|
|
|
<varname>playlist_plugin</varname> options valid for all
|
|
|
|
plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>name</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>enabled</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Allows you to disable a input plugin without
|
|
|
|
recompiling. By default, all plugins are enabled.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2014-09-02 10:22:48 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
More information can be found in the <link
|
|
|
|
linkend="playlist_plugins">playlist plugin reference</link>.
|
|
|
|
</para>
|
2009-10-13 16:19:21 +02:00
|
|
|
</section>
|
2013-12-01 18:27:18 +01:00
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_audio_format">
|
2013-12-01 18:27:18 +01:00
|
|
|
<title>Audio Format Settings</title>
|
|
|
|
|
2014-09-02 14:42:05 +02:00
|
|
|
<section id="config_global_audio_format">
|
2013-12-01 18:27:18 +01:00
|
|
|
<title>Global Audio Format</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The setting <varname>audio_output_format</varname> forces
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> to use one audio format for
|
|
|
|
all outputs. Doing that is usually not a good idea. The
|
|
|
|
values are the same as in <link
|
2014-09-02 10:22:48 +02:00
|
|
|
linkend="ao_format"><varname>format</varname> in the <link
|
2014-09-02 13:44:38 +02:00
|
|
|
linkend="config_audio_outputs"><varname>audio_output</varname></link>
|
2014-09-02 10:22:48 +02:00
|
|
|
section</link>.
|
2013-12-01 18:27:18 +01:00
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title>Resampler</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Sometimes, music needs to be resampled before it can be
|
|
|
|
played; for example, CDs use a sample rate of 44,100 Hz
|
|
|
|
while many cheap audio chips can only handle 48,000 Hz.
|
|
|
|
Resampling reduces the quality and consumes a lot of CPU.
|
|
|
|
There are different options, some of them optimized for high
|
|
|
|
quality and others for low CPU usage, but you can't have
|
|
|
|
both at the same time. Often, the resampler is the
|
2014-08-24 12:42:00 +02:00
|
|
|
component that is responsible for most of
|
|
|
|
<application>MPD</application>'s CPU usage. Since
|
|
|
|
<application>MPD</application> comes with high quality
|
|
|
|
defaults, it may appear that <application>MPD</application>
|
|
|
|
consumes more CPU than other software.
|
2013-12-01 18:27:18 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2015-01-22 11:04:21 +01:00
|
|
|
Check the <link linkend="resampler_plugins">resampler plugin
|
2015-01-21 20:42:41 +01:00
|
|
|
reference</link> for a list of resamplers and how to
|
|
|
|
configure them.
|
2013-12-01 18:27:18 +01:00
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
</section>
|
2014-08-24 12:39:38 +02:00
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="config_other">
|
2014-08-24 12:39:38 +02:00
|
|
|
<title>Other Settings</title>
|
|
|
|
|
2016-04-22 10:47:45 +02:00
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>metadata_to_use</varname>
|
|
|
|
<parameter>TAG1,TAG2,...</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Use only the specified tags, and ignore the others.
|
|
|
|
This setting can reduce the database size and
|
|
|
|
<application>MPD</application>'s memory usage by
|
|
|
|
omitting unused tags. By default, all tags but
|
|
|
|
<varname>comment</varname> are enabled. The special
|
|
|
|
value "none" disables all tags.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
|
2014-08-24 12:39:38 +02:00
|
|
|
<section>
|
|
|
|
<title>The State File</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <emphasis>state file</emphasis> is a file where
|
|
|
|
<application>MPD</application> saves and restores its state
|
|
|
|
(play queue, playback position etc.) to keep it persistent
|
|
|
|
across restarts and reboots. It is an optional setting.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
<application>MPD</application> will attempt to load the
|
|
|
|
state file during startup, and will save it when shutting
|
|
|
|
down the daemon. Additionally, the state file is refreshed
|
|
|
|
every two minutes (after each state change).
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>state_file</varname>
|
|
|
|
<parameter>PATH</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Specify the state file location. The parent
|
|
|
|
directory must be writable by the
|
|
|
|
<application>MPD</application> user
|
|
|
|
(<parameter>+wx</parameter>).
|
|
|
|
</entry>
|
|
|
|
</row>
|
2014-08-24 12:59:45 +02:00
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>state_file_interval</varname>
|
|
|
|
<parameter>SECONDS</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Auto-save the state file this number of seconds
|
|
|
|
after each state change. Defaults to
|
|
|
|
<parameter>120</parameter> (2 minutes).
|
|
|
|
</entry>
|
|
|
|
</row>
|
2014-08-24 12:39:38 +02:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2014-08-24 13:33:00 +02:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<title>Resource Limitations</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
These settings are various limitations to prevent
|
|
|
|
<application>MPD</application> from using too many
|
|
|
|
resources (denial of service).
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>connection_timeout</varname>
|
|
|
|
<parameter>SECONDS</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
If a client does not send any new data in this time
|
|
|
|
period, the connection is closed. Clients waiting
|
|
|
|
in "idle" mode are excluded from this. Default is
|
|
|
|
<parameter>60</parameter>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>max_connections</varname>
|
|
|
|
<parameter>NUMBER</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
This specifies the maximum number of clients that
|
|
|
|
can be connected to <application>MPD</application>
|
|
|
|
at the same time. Default is
|
|
|
|
<parameter>5</parameter>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>max_playlist_length</varname>
|
|
|
|
<parameter>NUMBER</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The maximum number of songs that can be in the
|
|
|
|
playlist. Default is <parameter>16384</parameter>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>max_command_list_size</varname>
|
|
|
|
<parameter>KBYTES</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The maximum size a command list. Default is
|
|
|
|
<parameter>2048</parameter> (2 MiB).
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>max_output_buffer_size</varname>
|
|
|
|
<parameter>KBYTES</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The maximum size of the output buffer to a client
|
|
|
|
(maximum response size). Default is
|
|
|
|
<parameter>8192</parameter> (8 MiB).
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title>Buffer Settings</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Do not change these unless you know what you are doing.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>audio_buffer_size</varname>
|
|
|
|
<parameter>KBYTES</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Adjust the size of the internal audio buffer.
|
|
|
|
Default is <parameter>4096</parameter> (4 MiB).
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>buffer_before_play</varname>
|
|
|
|
<parameter>PERCENT</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Control the percentage of the buffer which is filled
|
|
|
|
before beginning to play. Increasing this reduces
|
|
|
|
the chance of audio file skipping, at the cost of
|
|
|
|
increased time prior to audio playback. Default is
|
|
|
|
<parameter>10%</parameter>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2014-08-24 12:39:38 +02:00
|
|
|
</section>
|
2009-03-12 17:06:48 +01:00
|
|
|
</chapter>
|
|
|
|
|
2014-09-19 22:09:58 +02:00
|
|
|
<chapter id="advanced_config">
|
|
|
|
<title>Advanced configuration</title>
|
|
|
|
|
|
|
|
<section id="satellite">
|
|
|
|
<title>Satellite setup</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
<application>MPD</application> runs well on weak machines such
|
|
|
|
as the <ulink url="http://www.raspberrypi.org/">Raspberry
|
|
|
|
Pi</ulink>. However, such hardware tends to not have storage
|
|
|
|
big enough to hold a music collection. Mounting music from a
|
|
|
|
file server can be very slow, especially when updating the
|
|
|
|
database.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
One approach for optimization is running
|
|
|
|
<application>MPD</application> on the file server, which not
|
|
|
|
only exports raw files, but also provides access to a readily
|
|
|
|
scanned database. Example configuration:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>music_directory "nfs://fileserver.local/srv/mp3"
|
|
|
|
#music_directory "smb://fileserver.local/mp3"
|
|
|
|
|
|
|
|
database {
|
|
|
|
plugin "proxy"
|
|
|
|
host "fileserver.local"
|
|
|
|
}
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <link
|
|
|
|
linkend="config_music_directory"><varname>music_directory</varname></link>
|
|
|
|
setting tells <application>MPD</application> to read files
|
|
|
|
from the given NFS server. It does this by connecting to the
|
|
|
|
server from userspace. This does not actually mount the file
|
|
|
|
server into the kernel's virtual file system, and thus
|
|
|
|
requires no kernel cooperation and no special privileges. It
|
|
|
|
does not even require a kernel with NFS support, only the
|
|
|
|
<link linkend="nfs_storage"><filename>nfs</filename></link>
|
|
|
|
storage plugin (using the <filename>libnfs</filename>
|
|
|
|
userspace library). The same can be done with SMB/CIFS using
|
|
|
|
the <link
|
|
|
|
linkend="smbclient_storage"><filename>smbclient</filename></link>
|
|
|
|
storage plugin (using <filename>libsmbclient</filename>).
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <link
|
|
|
|
linkend="config_database_plugins"><varname>database</varname></link>
|
|
|
|
setting tells <application>MPD</application> to pass all
|
|
|
|
database queries on to the <application>MPD</application>
|
|
|
|
instance running on the file server (using the <link
|
|
|
|
linkend="proxy_database"><filename>proxy</filename></link>
|
|
|
|
plugin).
|
|
|
|
</para>
|
|
|
|
</section>
|
2015-10-27 10:31:50 +01:00
|
|
|
|
|
|
|
<section id="realtime">
|
|
|
|
<title>Real-Time Scheduling</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
On Linux, <application>MPD</application> attempts to configure
|
|
|
|
<ulink
|
|
|
|
url="https://en.wikipedia.org/wiki/Real-time_computing">real-time
|
|
|
|
scheduling</ulink> for some threads that benefit from it.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
This is only possible you allow <application>MPD</application>
|
|
|
|
to do it. This privilege is controlled by
|
|
|
|
<varname>RLIMIT_RTPRIO</varname>
|
|
|
|
<varname>RLIMIT_RTTIME</varname>. You can configure this
|
|
|
|
privilege with <command>ulimit</command> before launching
|
|
|
|
<application>MPD</application>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>ulimit -HS -r 50; mpd</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Or you can use the <command>prlimit</command> program from the
|
|
|
|
<application>util-linux</application> package:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>prlimit --rtprio=50 --rttime=unlimited mpd</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <application>systemd</application> service file shipped
|
|
|
|
with <application>MPD</application> comes with this setting.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
This works only if the Linux kernel was compiled with
|
|
|
|
<varname>CONFIG_RT_GROUP_SCHED</varname> disabled. Use the
|
|
|
|
following command to check this option for your current
|
|
|
|
kernel:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>zgrep ^CONFIG_RT_GROUP_SCHED /proc/config.gz</programlisting>
|
|
|
|
|
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
There is a rumor that real-time scheduling improves audio
|
|
|
|
quality. That is not true. All it does is reduce the
|
|
|
|
probability of skipping (audio buffer xruns) when the
|
|
|
|
computer is under heavy load.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
</section>
|
2014-09-19 22:09:58 +02:00
|
|
|
</chapter>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<chapter id="use">
|
2014-08-24 12:42:00 +02:00
|
|
|
<title>Using <application>MPD</application></title>
|
2009-10-16 18:10:36 +02:00
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="client">
|
2009-10-16 18:10:36 +02:00
|
|
|
<title>The client</title>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
After you have installed, configured and started
|
|
|
|
<application>MPD</application>, you choose a client to control
|
|
|
|
the playback.
|
2009-10-16 18:10:36 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The most basic client is <filename>mpc</filename>, which
|
|
|
|
provides a command line interface. It is useful in shell
|
|
|
|
scripts. Many people bind specific <filename>mpc</filename>
|
|
|
|
commands to hotkeys.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
The <ulink
|
|
|
|
url="http://www.musicpd.org/clients/"><application>MPD</application>
|
2009-10-16 18:10:36 +02:00
|
|
|
Wiki</ulink> contains an extensive list of clients to choose
|
|
|
|
from.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="music_directory_and_database">
|
2009-10-16 18:10:36 +02:00
|
|
|
<title>The music directory and the database</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The "music directory" is where you store your music files.
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> stores all relevant meta
|
|
|
|
information about all songs in its "database". Whenever you
|
|
|
|
add, modify or remove songs in the music directory, you have
|
|
|
|
to update the database, for example with
|
|
|
|
<filename>mpc</filename>:
|
2009-10-16 18:10:36 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>mpc update</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Depending on the size of your music collection and the speed
|
|
|
|
of the storage, this can take a while.
|
|
|
|
</para>
|
2009-10-16 18:11:43 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
To exclude a file from the update, create a file called
|
|
|
|
<filename>.mpdignore</filename> in its parent directory. Each
|
|
|
|
line of that file may contain a list of shell wildcards.
|
2015-09-29 19:39:07 +02:00
|
|
|
Matching files in the current directory and all subdirectories
|
|
|
|
are excluded.
|
2009-10-16 18:11:43 +02:00
|
|
|
</para>
|
2009-10-16 18:10:36 +02:00
|
|
|
</section>
|
|
|
|
|
2016-04-22 10:01:02 +02:00
|
|
|
<section id="tags">
|
|
|
|
<title>Metadata</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
When scanning or playing a song,
|
|
|
|
<application>MPD</application> parses its metadata. The
|
|
|
|
following tags are supported:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<xi:include href="include/tags.xml"
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"/>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="queue">
|
2009-10-16 18:10:36 +02:00
|
|
|
<title>The queue</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The queue (sometimes called "current playlist") is a list of
|
2014-08-24 12:42:00 +02:00
|
|
|
songs to be played by <application>MPD</application>. To play
|
|
|
|
a song, add it to the queue and start playback. Most clients
|
|
|
|
offer an interface to edit the queue.
|
2009-10-16 18:10:36 +02:00
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
</chapter>
|
|
|
|
|
2014-09-02 14:42:05 +02:00
|
|
|
<chapter id="advanced_usage">
|
|
|
|
<title>Advanced usage</title>
|
|
|
|
|
|
|
|
<section id="bit_perfect">
|
|
|
|
<title>Bit-perfect playback</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
"Bit-perfect playback" is a phrase used by audiophiles to
|
|
|
|
describe a setup that plays back digital music as-is, without
|
|
|
|
applying any modifications such as resampling, format
|
|
|
|
conversion or software volume. Naturally, this implies a
|
|
|
|
lossless codec.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
By default, <application>MPD</application> attempts to do
|
|
|
|
bit-perfect playback, unless you tell it not to. Precondition
|
|
|
|
is a sound chip that supports the audio format of your music
|
|
|
|
files. If the audio format is not supported,
|
|
|
|
<application>MPD</application> attempts to fall back to the
|
|
|
|
nearest supported audio format, trying to lose as little
|
|
|
|
quality as possible.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
To verify if <application>MPD</application> converts the audio
|
|
|
|
format, enable verbose logging, and watch for these lines:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>decoder: audio_format=44100:24:2, seekable=true
|
|
|
|
output: opened plugin=alsa name="An ALSA output" audio_format=44100:16:2
|
|
|
|
output: converting from 44100:24:2</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
This example shows that a 24 bit file is being played, but the
|
|
|
|
sond chip cannot play 24 bit. It falls back to 16 bit,
|
|
|
|
discarding 8 bit.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
However, this does not yet prove bit-perfect playback;
|
|
|
|
<application>ALSA</application> may be fooling
|
|
|
|
<application>MPD</application> that the audio format is
|
|
|
|
supported. To verify the format really being sent to the
|
|
|
|
physical sound chip, try:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>cat /proc/asound/card*/pcm*p/sub*/hw_params
|
|
|
|
access: RW_INTERLEAVED
|
|
|
|
format: S16_LE
|
|
|
|
subformat: STD
|
|
|
|
channels: 2
|
|
|
|
rate: 44100 (44100/1)
|
|
|
|
period_size: 4096
|
|
|
|
buffer_size: 16384</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Obey the "format" row, which indicates that the current
|
|
|
|
playback format is 16 bit (signed 16 bit integer, little
|
|
|
|
endian).
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Check list for bit-perfect playback:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Use the <link linkend="alsa_output">ALSA</link> output
|
|
|
|
plugin.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Disable sound processing inside
|
|
|
|
<application>ALSA</application> by configuring a
|
|
|
|
"hardware" device (<parameter>hw:0,0</parameter> or
|
|
|
|
similar).
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Don't use software volume (setting <link
|
|
|
|
linkend="config_audio_outputs"><varname>mixer_type</varname></link>).
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Don't force <application>MPD</application> to use a
|
|
|
|
specific audio format (settings <link
|
|
|
|
linkend="config_audio_outputs"><varname>format</varname></link>,
|
|
|
|
<link
|
|
|
|
linkend="config_global_audio_format"><varname>audio_output_format</varname></link>).
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Verify that you are really doing bit-perfect playback
|
|
|
|
using <application>MPD</application>'s verbose log and
|
|
|
|
<filename>/proc/asound/card*/pcm*p/sub*/hw_params</filename>.
|
|
|
|
Some DACs can also indicate the audio format.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="dsd">
|
|
|
|
<title>Direct Stream Digital (DSD)</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
DSD (<ulink
|
|
|
|
url="https://en.wikipedia.org/wiki/Direct_Stream_Digital">Direct
|
|
|
|
Stream Digital</ulink>) is a digital format that stores audio
|
|
|
|
as a sequence of single-bit values at a very high sampling
|
|
|
|
rate.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
<application>MPD</application> understands the file formats
|
|
|
|
<link linkend="dsdiff_decoder"><filename>dff</filename></link>
|
|
|
|
and <link
|
|
|
|
linkend="dsf_decoder"><filename>dsf</filename></link>. There
|
|
|
|
are three ways to play back DSD:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Native DSD playback. Requires
|
|
|
|
<application>ALSA</application> 1.0.27.1 or later, a sound
|
|
|
|
driver/chip that supports DSD and of course a DAC that
|
|
|
|
supports DSD.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
DoP (DSD over PCM) playback. This wraps DSD inside fake
|
|
|
|
24 bit PCM according to the <ulink
|
|
|
|
url="http://dsd-guide.com/dop-open-standard">DoP
|
|
|
|
standard</ulink>. Requires a DAC that supports DSD. No
|
|
|
|
support from ALSA and the sound chip required (except for
|
2014-09-05 14:32:43 +02:00
|
|
|
<link linkend="bit_perfect">bit-perfect</link> 24 bit PCM
|
|
|
|
support).
|
2014-09-02 14:42:05 +02:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Convert DSD to PCM on-the-fly.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Native DSD playback is used automatically if available. DoP
|
|
|
|
is only used if enabled explicitly using the <link
|
|
|
|
linkend="alsa_output"><varname>dop</varname></link> option,
|
|
|
|
because there is no way for <application>MPD</application> to
|
|
|
|
find out whether the DAC supports it. DSD to PCM conversion
|
|
|
|
is the fallback if DSD cannot be used directly.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
</chapter>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<chapter id="plugin_reference">
|
2009-03-12 17:06:48 +01:00
|
|
|
<title>Plugin reference</title>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="database_plugins">
|
2012-08-08 08:34:59 +02:00
|
|
|
<title>Database plugins</title>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>simple</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The default plugin. Stores a copy of the database in
|
|
|
|
memory. A file is used for permanent storage.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>path</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The path of the database file.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2014-08-11 21:30:49 +02:00
|
|
|
|
2014-10-10 23:20:50 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>cache_directory</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The path of the cache directory for additional
|
|
|
|
storages mounted at runtime. This setting is
|
|
|
|
necessary for the <command>mount</command> protocol
|
|
|
|
command.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
2014-08-11 21:30:49 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>compress</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Compress the database file using
|
|
|
|
<filename>gzip</filename>? Enabled by default (if
|
|
|
|
built with <filename>zlib</filename>).
|
|
|
|
</entry>
|
|
|
|
</row>
|
2012-08-08 08:34:59 +02:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2014-09-19 22:09:58 +02:00
|
|
|
<section id="proxy_database">
|
2012-08-08 08:34:59 +02:00
|
|
|
<title><varname>proxy</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
Provides access to the database of another
|
|
|
|
<application>MPD</application> instance using
|
|
|
|
<filename>libmpdclient</filename>. This is useful when you
|
|
|
|
run mount the music directory via NFS/SMB, and the file
|
|
|
|
server already runs a <application>MPD</application>
|
|
|
|
instance. Only the file server needs to update the
|
|
|
|
database.
|
2012-08-08 08:34:59 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>host</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
The host name of the "master"
|
|
|
|
<application>MPD</application> instance.
|
2012-08-08 08:34:59 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>port</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
The port number of the "master"
|
|
|
|
<application>MPD</application> instance.
|
2012-08-08 08:34:59 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
2015-01-15 23:33:10 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>keepalive</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Send TCP keepalive packets to the "master"
|
|
|
|
<application>MPD</application> instance? This option can
|
|
|
|
help avoid certain firewalls dropping inactive
|
|
|
|
connections, at the expensive of a very small amount of
|
|
|
|
additional network traffic. Disabled by default.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2012-08-08 08:34:59 +02:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2014-01-09 20:59:51 +01:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>upnp</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Provides access to UPnP media servers.
|
|
|
|
</para>
|
|
|
|
</section>
|
2012-08-08 08:34:59 +02:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="storage_plugins">
|
2014-02-08 00:09:53 +01:00
|
|
|
<title>Storage plugins</title>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>local</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
The default plugin which gives
|
|
|
|
<application>MPD</application> access to local files. It is
|
|
|
|
used when <varname>music_directory</varname> refers to a
|
|
|
|
local directory.
|
2014-02-08 00:09:53 +01:00
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="smbclient_storage">
|
2014-02-08 00:09:53 +01:00
|
|
|
<title><varname>smbclient</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Load music files from a SMB/CIFS server. It used used when
|
|
|
|
<varname>music_directory</varname> contains a
|
|
|
|
<parameter>smb://</parameter> URI, for example
|
|
|
|
"<parameter>smb://myfileserver/Music</parameter>".
|
|
|
|
</para>
|
|
|
|
</section>
|
2014-02-08 14:03:25 +01:00
|
|
|
|
2014-09-19 22:12:42 +02:00
|
|
|
<section id="nfs_storage">
|
2014-02-08 14:03:25 +01:00
|
|
|
<title><varname>nfs</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Load music files from a NFS server. It used used when
|
|
|
|
<varname>music_directory</varname> contains a
|
|
|
|
<parameter>nfs://</parameter> URI according to <ulink
|
|
|
|
url="http://tools.ietf.org/html/rfc2224">RFC2224</ulink>,
|
|
|
|
for example "<parameter>nfs://servername/path</parameter>".
|
|
|
|
</para>
|
2014-09-19 22:12:42 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
This plugin uses <ulink
|
|
|
|
url="https://github.com/sahlberg/libnfs"><filename>libnfs</filename></ulink>,
|
|
|
|
which supports only NFS version 3. Since
|
|
|
|
<application>MPD</application> is not allowed to bind to
|
|
|
|
"privileged ports", the NFS server needs to enable the
|
|
|
|
"insecure" setting; example
|
|
|
|
<filename>/etc/exports</filename>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>/srv/mp3 192.168.1.55(ro,insecure)</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Don't fear: "insecure" does not mean that your NFS server is
|
|
|
|
insecure. A few decades ago, people thought the concept of
|
|
|
|
"privileged ports" would make network services "secure",
|
|
|
|
which was a fallacy. The absence of this obsolete
|
|
|
|
"security" measure means little.
|
|
|
|
</para>
|
2014-02-08 14:03:25 +01:00
|
|
|
</section>
|
2014-02-08 00:09:53 +01:00
|
|
|
</section>
|
|
|
|
|
2014-10-10 23:20:50 +02:00
|
|
|
<section id="neighbor_plugins">
|
|
|
|
<title>Neighbor plugins</title>
|
|
|
|
|
|
|
|
<section id="smbclient_neighbor">
|
|
|
|
<title><varname>smbclient</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Provides a list of SMB/CIFS servers on the local network.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="upnp_neighbor">
|
|
|
|
<title><varname>upnp</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Provides a list of UPnP servers on the local network.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="input_plugins">
|
2009-04-25 13:22:09 +02:00
|
|
|
<title>Input plugins</title>
|
|
|
|
|
|
|
|
<section>
|
2014-02-06 18:36:06 +01:00
|
|
|
<title><varname>alsa</varname></title>
|
2009-04-25 13:22:09 +02:00
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
Allows <application>MPD</application> on Linux to play audio
|
|
|
|
directly from a soundcard using the scheme
|
|
|
|
<filename>alsa://</filename>. Audio is formatted as 44.1 kHz
|
|
|
|
16-bit stereo (CD format). Examples:
|
2014-02-06 18:36:06 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
<filename>mpc add alsa://</filename> plays audio from device hw:0,0
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<filename>mpc add alsa://hw:1,0</filename> plays audio from device
|
|
|
|
hw:1,0
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>cdio_paranoia</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Plays audio CDs. The URI has the form:
|
|
|
|
"<filename>cdda://[DEVICE][/TRACK]</filename>". The
|
|
|
|
simplest form <filename>cdda://</filename> plays the whole
|
|
|
|
disc in the default drive.
|
2009-04-25 13:22:09 +02:00
|
|
|
</para>
|
2009-04-25 13:35:04 +02:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
2014-02-06 18:36:06 +01:00
|
|
|
<varname>default_byte_order</varname>
|
|
|
|
<parameter>little_endian|big_endian</parameter>
|
2009-04-25 13:35:04 +02:00
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
If the CD drive does not specify a byte order,
|
|
|
|
<application>MPD</application> assumes it is the
|
|
|
|
CPU's native byte order. This setting allows
|
|
|
|
overriding this.
|
2009-04-25 13:35:04 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-04-25 13:22:09 +02:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
2014-02-06 18:36:06 +01:00
|
|
|
<title><varname>curl</varname></title>
|
2010-12-21 22:23:01 +01:00
|
|
|
|
|
|
|
<para>
|
2014-02-06 18:36:06 +01:00
|
|
|
Opens remote files or streams over HTTP.
|
2010-12-21 22:23:01 +01:00
|
|
|
</para>
|
2013-11-07 18:17:54 +01:00
|
|
|
|
2015-08-11 19:01:08 +02:00
|
|
|
<para>
|
|
|
|
Note that unless overridden by the below settings (e.g. by
|
|
|
|
setting them to a blank value), general curl configuration
|
|
|
|
from environment variables such as
|
|
|
|
<varname>http_proxy</varname> or specified in
|
|
|
|
<filename>~/.curlrc</filename> will be in effect.
|
|
|
|
</para>
|
|
|
|
|
2013-11-07 18:17:54 +01:00
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
2014-02-06 18:36:06 +01:00
|
|
|
<varname>proxy</varname>
|
2013-11-07 18:17:54 +01:00
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-02-06 18:36:06 +01:00
|
|
|
Sets the address of the HTTP proxy server.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>proxy_user</varname>,
|
|
|
|
<varname>proxy_password</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Configures proxy authentication.
|
2013-11-07 18:17:54 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2014-07-11 16:39:42 +02:00
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>verify_peer</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Verify the peer's SSL certificate? <ulink
|
|
|
|
url="http://curl.haxx.se/libcurl/c/CURLOPT_SSL_VERIFYPEER.html">More
|
|
|
|
information</ulink>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>verify_host</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Verify the certificate's name against host? <ulink
|
|
|
|
url="http://curl.haxx.se/libcurl/c/CURLOPT_SSL_VERIFYHOST.html">More
|
|
|
|
information</ulink>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2013-11-07 18:17:54 +01:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2010-12-21 22:23:01 +01:00
|
|
|
</section>
|
2011-04-02 08:38:22 +02:00
|
|
|
|
2017-01-03 20:27:22 +01:00
|
|
|
<section id="ffmpeg_input">
|
|
|
|
<title><varname>ffmpeg</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Access to various network protocols implemented by the
|
|
|
|
<application>FFmpeg</application> library:
|
|
|
|
<filename>gopher://</filename>,
|
|
|
|
<filename>rtp://</filename>,
|
|
|
|
<filename>rtsp://</filename>,
|
|
|
|
<filename>rtmp://</filename>,
|
|
|
|
<filename>rtmpt://</filename>,
|
|
|
|
<filename>rtmps://</filename>
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2013-12-29 00:36:57 +01:00
|
|
|
<section>
|
2014-02-06 18:36:06 +01:00
|
|
|
<title><varname>file</varname></title>
|
2013-12-29 00:36:57 +01:00
|
|
|
|
|
|
|
<para>
|
2014-02-06 18:36:06 +01:00
|
|
|
Opens local files.
|
2013-12-29 00:36:57 +01:00
|
|
|
</para>
|
2014-02-06 18:36:06 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>mms</varname></title>
|
2013-12-29 00:36:57 +01:00
|
|
|
|
|
|
|
<para>
|
2014-02-06 18:36:06 +01:00
|
|
|
Plays streams with the MMS protocol.
|
2013-12-29 00:36:57 +01:00
|
|
|
</para>
|
|
|
|
</section>
|
2014-01-08 22:40:55 +01:00
|
|
|
|
2014-02-06 07:29:26 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>nfs</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
Allows <application>MPD</application> to access files on
|
|
|
|
NFSv3 servers without actually mounting them (i.e. in
|
|
|
|
userspace, without help from the kernel's VFS layer). All
|
|
|
|
URIs with the <filename>nfs://</filename> scheme are used
|
|
|
|
according to <ulink
|
2014-02-06 07:29:26 +01:00
|
|
|
url="http://tools.ietf.org/html/rfc2224">RFC2224</ulink>.
|
|
|
|
Example:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
<filename>mpc add nfs://servername/path/filename.ogg</filename>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Note that this usually requires enabling the "insecure" flag
|
|
|
|
in the server's <filename>/etc/exports</filename> file,
|
2014-08-24 12:42:00 +02:00
|
|
|
because <application>MPD</application> cannot bind to
|
|
|
|
so-called "privileged" ports. Don't fear: this will not
|
|
|
|
make your file server insecure; the flag was named in a time
|
|
|
|
long ago when privileged ports were thought to be meaningful
|
|
|
|
for security. By today's standards, NFSv3 is not secure at
|
|
|
|
all, and if you believe it is, you're already doomed.
|
2014-02-06 07:29:26 +01:00
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-01-08 22:40:55 +01:00
|
|
|
<section>
|
2014-02-06 18:36:06 +01:00
|
|
|
<title><varname>smbclient</varname></title>
|
2014-01-08 22:40:55 +01:00
|
|
|
|
|
|
|
<para>
|
2014-08-24 12:42:00 +02:00
|
|
|
Allows <application>MPD</application> to access files on
|
|
|
|
SMB/CIFS servers (e.g. Samba or Microsoft Windows). All
|
|
|
|
URIs with the <filename>smb://</filename> scheme are used.
|
|
|
|
Example:
|
2014-01-08 22:40:55 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-02-06 18:36:06 +01:00
|
|
|
<filename>mpc add smb://servername/sharename/filename.ogg</filename>
|
2014-01-08 22:40:55 +01:00
|
|
|
</para>
|
|
|
|
</section>
|
2009-04-25 13:22:09 +02:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="decoder_plugins">
|
2009-11-14 02:06:23 +01:00
|
|
|
<title>Decoder plugins</title>
|
|
|
|
|
2017-01-03 20:27:22 +01:00
|
|
|
<section id="adplug_decoder">
|
|
|
|
<title><varname>adplug</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes AdLib files.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>sample_rate</varname>
|
|
|
|
<parameter></parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The sample rate that shall be synthesized by the
|
|
|
|
plugin. Defaults to 48000.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="audiofile_decoder">
|
|
|
|
<title><varname>audiofile</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes WAV and AIFF files using
|
|
|
|
<filename>libaudiofile</filename>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="faad_decoder">
|
|
|
|
<title><varname>faad</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes AAC files using <filename>libfaad</filename>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="ffmpeg_decoder">
|
|
|
|
<title><varname>ffmpeg</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes various codecs using
|
|
|
|
<application>FFmpeg</application>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="flac_decoder">
|
|
|
|
<title><varname>flac</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes FLAC files using
|
|
|
|
<application>libFLAC</application>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 14:42:05 +02:00
|
|
|
<section id="dsdiff_decoder">
|
2011-10-07 06:38:23 +02:00
|
|
|
<title><varname>dsdiff</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2012-06-16 13:46:42 +02:00
|
|
|
Decodes DFF files containing DSDIFF data (e.g. SACD rips).
|
2011-10-07 06:38:23 +02:00
|
|
|
</para>
|
2011-10-07 10:10:43 +02:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>lsbitfirst</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Decode the least significant bit first. Default is
|
2014-08-24 12:42:00 +02:00
|
|
|
<parameter>no</parameter>.
|
2011-10-07 10:10:43 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2011-10-07 06:38:23 +02:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 14:42:05 +02:00
|
|
|
<section id="dsf_decoder">
|
2012-06-16 13:46:42 +02:00
|
|
|
<title><varname>dsf</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes DSF files containing DSDIFF data (e.g. SACD rips).
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
2012-08-15 00:51:45 +02:00
|
|
|
<section>
|
|
|
|
<title><varname>fluidsynth</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
MIDI decoder based on <ulink
|
|
|
|
url="http://www.fluidsynth.org/"><application>FluidSynth</application></ulink>.
|
2012-08-15 00:51:45 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2012-08-15 00:57:32 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>sample_rate</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The sample rate that shall be synthesized by the
|
|
|
|
plugin. Defaults to 48000.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2012-08-15 00:51:45 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>soundfont</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The absolute path of the soundfont file. Defaults
|
|
|
|
to
|
|
|
|
<filename>/usr/share/sounds/sf2/FluidR3_GM.sf2</filename>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2015-10-26 16:56:52 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>gme</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Video game music file emulator based on <ulink
|
|
|
|
url="https://bitbucket.org/mpyne/game-music-emu/wiki/Home"><application>game-music-emu</application></ulink>.
|
|
|
|
</para>
|
2015-10-26 16:48:38 +01:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>accuracy</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Enable more accurate sound emulation.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2015-10-26 16:56:52 +01:00
|
|
|
</section>
|
|
|
|
|
2017-01-03 20:27:22 +01:00
|
|
|
<section id="mad_decoder">
|
|
|
|
<title><varname>mad</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes MP3 files using <application>libmad</application>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2009-11-14 02:03:03 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>mikmod</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Module player based on <ulink
|
|
|
|
url="http://mikmod.sourceforge.net/"><application>MikMod</application></ulink>.
|
2009-11-14 02:03:03 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2013-10-18 04:12:36 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>loop</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Allow backward loops in modules. Default is
|
|
|
|
<parameter>no</parameter>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2009-11-14 02:03:03 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>sample_rate</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the sample rate generated by
|
|
|
|
<filename>libmikmod</filename>. Default is 44100.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2013-10-19 15:39:04 +02:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>modplug</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Module player based on <application>MODPlug</application>.
|
2013-10-19 15:39:04 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>loop_count</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Number of times to loop the module if it uses backward loops.
|
|
|
|
Default is <parameter>0</parameter> which prevents looping.
|
|
|
|
<parameter>-1</parameter> loops forever.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2012-08-15 01:03:16 +02:00
|
|
|
|
2017-01-03 20:27:22 +01:00
|
|
|
<section id="mpcdec_decoder">
|
|
|
|
<title><varname>mpcdec</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes Musepack files using
|
|
|
|
<application>libmpcdec</application>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="mpg123_decoder">
|
|
|
|
<title><varname>mpg123</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes MP3 files using <application>libmpg123</application>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2016-06-10 22:52:18 +02:00
|
|
|
<section>
|
|
|
|
<title><varname>pcm</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2016-06-10 22:45:22 +02:00
|
|
|
Read raw PCM samples. It understands the "audio/L16" MIME
|
|
|
|
type with parameters "rate" and "channels" according to RFC
|
2016-06-10 22:59:45 +02:00
|
|
|
2586. It also understands the
|
|
|
|
<application>MPD</application>-specific MIME type
|
|
|
|
"audio/x-mpd-float".
|
2016-06-10 22:52:18 +02:00
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-12-04 21:06:21 +01:00
|
|
|
<section id="sidplay_decoder">
|
|
|
|
<title><varname>sidplay</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
C64 SID decoder based on
|
|
|
|
<application>libsidplay</application>.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>songlength_database</varname>
|
|
|
|
<parameter>PATH</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Location of your songlengths file, as distributed
|
|
|
|
with the HVSC. The <varname>sidplay</varname>
|
|
|
|
plugin checks this for matching MD5 fingerprints.
|
2016-07-29 20:16:33 +02:00
|
|
|
See <ulink url="http://www.hvsc.c64.org/download/C64Music/DOCUMENTS/Songlengths.faq"/>.
|
2014-12-04 21:06:21 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>default_songlength</varname>
|
|
|
|
<parameter>SECONDS</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
This is the default playing time in seconds for
|
|
|
|
songs not in the songlength database, or in case
|
|
|
|
you're not using a database. A value of 0 means
|
|
|
|
play indefinitely.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>filter</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Turns the SID filter emulation on or off.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2017-01-03 20:27:22 +01:00
|
|
|
<section id="sndfile_decoder">
|
|
|
|
<title><varname>sndfile</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes WAV and AIFF files using
|
|
|
|
<filename>libsndfile</filename>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="vorbis_decoder">
|
|
|
|
<title><varname>vorbis</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes Ogg-Vorbis files using
|
|
|
|
<application>libvorbis</application>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="wavpack_decoder">
|
|
|
|
<title><varname>wavpack</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Decodes WavPack files using
|
|
|
|
<application>libwavpack</application>.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2012-08-15 01:03:16 +02:00
|
|
|
<section>
|
|
|
|
<title><varname>wildmidi</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
MIDI decoder based on <ulink
|
|
|
|
url="http://www.mindwerks.net/projects/wildmidi/"><application>libwildmidi</application></ulink>.
|
2012-08-15 01:03:16 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>config_file</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The absolute path of the timidity config file. Defaults
|
|
|
|
to
|
|
|
|
<filename>/etc/timidity/timidity.cfg</filename>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2009-11-14 02:06:23 +01:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="encoder_plugins">
|
2011-01-10 23:13:01 +01:00
|
|
|
<title>Encoder plugins</title>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>flac</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Encodes into <ulink
|
|
|
|
url="https://xiph.org/flac/">FLAC</ulink> (lossless).
|
2011-01-10 23:13:01 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>compression</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the <filename>libFLAC</filename> compression
|
|
|
|
level. The levels range from 0 (fastest, least
|
|
|
|
compression) to 8 (slowest, most compression).
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>lame</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Encodes into MP3 using the <ulink
|
|
|
|
url="http://lame.sourceforge.net/"><application>LAME</application></ulink>
|
|
|
|
library.
|
2011-01-10 23:13:01 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>quality</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the quality for VBR. 0 is the highest quality,
|
|
|
|
9 is the lowest quality. Cannot be used with
|
|
|
|
<varname>bitrate</varname>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>bitrate</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the bit rate in kilobit per second. Cannot be
|
|
|
|
used with <varname>quality</varname>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>null</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Does not encode anything, passes the input PCM data as-is.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2014-01-12 21:40:29 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>shine</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Encodes into MP3 using the <ulink
|
|
|
|
url="https://github.com/savonet/shine"><application>Shine</application></ulink>
|
|
|
|
library.
|
2014-01-12 21:40:29 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>bitrate</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the bit rate in kilobit per second.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2011-01-10 23:13:01 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>twolame</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Encodes into MP2 using the <ulink
|
|
|
|
url="http://www.twolame.org/"><application>TwoLAME</application></ulink>
|
2011-01-10 23:13:01 +01:00
|
|
|
library.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>quality</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the quality for VBR. 0 is the highest quality,
|
|
|
|
9 is the lowest quality. Cannot be used with
|
|
|
|
<varname>bitrate</varname>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>bitrate</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the bit rate in kilobit per second. Cannot be
|
|
|
|
used with <varname>quality</varname>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="vorbis_encoder">
|
2011-01-10 23:13:01 +01:00
|
|
|
<title><varname>vorbis</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
Encodes into <ulink url="http://www.vorbis.com/">Ogg
|
|
|
|
Vorbis</ulink>.
|
2011-01-10 23:13:01 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>quality</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the quality for VBR. -1 is the lowest quality,
|
|
|
|
10 is the highest quality. Cannot be used with
|
|
|
|
<varname>bitrate</varname>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>bitrate</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the bit rate in kilobit per second. Cannot be
|
|
|
|
used with <varname>quality</varname>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>wave</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Encodes into WAV (lossless).
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
2015-01-22 11:04:21 +01:00
|
|
|
<section id="resampler_plugins">
|
|
|
|
<title>Resampler plugins</title>
|
|
|
|
|
2015-01-21 20:42:41 +01:00
|
|
|
<para>
|
|
|
|
The resampler can be configured in a block named
|
|
|
|
<varname>resampler</varname>, for example:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<programlisting>resampler {
|
|
|
|
plugin "soxr"
|
|
|
|
quality "very high"
|
|
|
|
}</programlisting>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following table lists the <varname>resampler</varname>
|
|
|
|
options valid for all plugins:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>plugin</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The name of the plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
|
2015-01-22 11:04:21 +01:00
|
|
|
<section id="internal_resampler">
|
|
|
|
<title><varname>internal</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
A resampler built into <application>MPD</application>. Its
|
|
|
|
quality is very poor, but its CPU usage is low. This is the
|
|
|
|
fallback if <application>MPD</application> was compiled
|
|
|
|
without an external resampler.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="libsamplerate_resampler">
|
|
|
|
<title><varname>libsamplerate</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
A resampler using <ulink
|
|
|
|
url="http://www.mega-nerd.com/SRC/"><application>libsamplerate</application></ulink>
|
|
|
|
a.k.a. Secret Rabbit Code (SRC).
|
|
|
|
</para>
|
2015-01-21 20:42:41 +01:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>type</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The interpolator type. See below for a list of
|
|
|
|
known types.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following converter types are provided by
|
|
|
|
<application>libsamplerate</application>:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Type
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
"<parameter>Best Sinc Interpolator</parameter>" or
|
|
|
|
"<parameter>0</parameter>"
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Band limited sinc interpolation, best quality, 97dB
|
|
|
|
SNR, 96% BW.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
"<parameter>Medium Sinc Interpolator</parameter>" or
|
|
|
|
"<parameter>1</parameter>"
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Band limited sinc interpolation, medium quality,
|
|
|
|
97dB SNR, 90% BW.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
"<parameter>Fastest Sinc Interpolator</parameter>" or
|
|
|
|
"<parameter>2</parameter>"
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Band limited sinc interpolation, fastest, 97dB SNR,
|
|
|
|
80% BW.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
"<parameter>ZOH Sinc Interpolator</parameter>" or
|
|
|
|
"<parameter>3</parameter>"
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Zero order hold interpolator, very fast, very poor
|
|
|
|
quality with audible distortions.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
"<parameter>Linear Interpolator</parameter>" or
|
|
|
|
"<parameter>4</parameter>"
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Linear interpolator, very fast, poor quality.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2015-01-22 11:04:21 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="soxr_resampler">
|
|
|
|
<title><varname>soxr</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
A resampler using <ulink
|
|
|
|
url="http://sourceforge.net/projects/soxr/"><application>libsoxr</application></ulink>,
|
|
|
|
the SoX Resampler library
|
|
|
|
</para>
|
2015-01-21 20:42:41 +01:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
Name
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Description
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>quality</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The <application>libsoxr</application> quality
|
|
|
|
setting. Valid values are:
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
"<parameter>very high</parameter>"
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
"<parameter>high</parameter>" (the default)
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
"<parameter>medium</parameter>"
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
"<parameter>low</parameter>"
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
"<parameter>quick</parameter>"
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
</entry>
|
|
|
|
</row>
|
2015-01-21 20:33:13 +01:00
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>threads</varname>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The number of <application>libsoxr</application>
|
|
|
|
threads. "0" means "automatic". The default is "1"
|
|
|
|
which disables multi-threading.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2015-01-21 20:42:41 +01:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2015-01-22 11:04:21 +01:00
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 13:44:38 +02:00
|
|
|
<section id="output_plugins">
|
2009-03-14 16:01:56 +01:00
|
|
|
<title>Output plugins</title>
|
|
|
|
|
2014-08-24 12:49:44 +02:00
|
|
|
<section id="alsa_output">
|
2009-03-14 16:01:56 +01:00
|
|
|
<title><varname>alsa</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
The <ulink
|
|
|
|
url="http://www.alsa-project.org/"><application>Advanced
|
|
|
|
Linux Sound Architecture</application>
|
|
|
|
(<application>ALSA</application>)</ulink> plugin uses
|
2009-03-14 16:01:56 +01:00
|
|
|
<filename>libasound</filename>. It is recommended if you
|
|
|
|
are using Linux.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>device</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the device which should be used. This can be
|
|
|
|
any valid ALSA device name. The default value is
|
|
|
|
"default", which makes
|
|
|
|
<filename>libasound</filename> choose a device. It
|
|
|
|
is recommended to use a "hw" or "plughw" device,
|
|
|
|
because otherwise, <filename>libasound</filename>
|
|
|
|
automatically enables "dmix", which has major
|
|
|
|
disadvantages (fixed sample rate, poor resampler,
|
|
|
|
...).
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>buffer_time</varname>
|
|
|
|
<parameter>US</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the device's buffer time in microseconds.
|
|
|
|
Don't change unless you know what you're doing.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>period_time</varname>
|
|
|
|
<parameter>US</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the device's period time in microseconds.
|
|
|
|
Don't change unless you really know what you're
|
|
|
|
doing.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>auto_resample</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
If set to <parameter>no</parameter>, then
|
|
|
|
<filename>libasound</filename> will not attempt to
|
2014-08-24 12:42:00 +02:00
|
|
|
resample, handing the responsibility over to
|
|
|
|
<application>MPD</application>. It is recommended
|
|
|
|
to let <application>MPD</application> resample (with
|
|
|
|
<application>libsamplerate</application>), because
|
|
|
|
ALSA is quite poor at doing so.
|
2009-03-14 16:01:56 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>auto_channels</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
If set to <parameter>no</parameter>, then
|
|
|
|
<filename>libasound</filename> will not attempt to
|
|
|
|
convert between different channel numbers.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>auto_format</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
If set to <parameter>no</parameter>, then
|
|
|
|
<filename>libasound</filename> will not attempt to
|
|
|
|
convert between different sample formats (16 bit, 24
|
|
|
|
bit, floating point, ...).
|
|
|
|
</entry>
|
|
|
|
</row>
|
2012-03-21 10:36:19 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
2014-08-31 16:12:26 +02:00
|
|
|
<varname>dop</varname>
|
2012-03-21 10:36:19 +01:00
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
If set to <parameter>yes</parameter>, then DSD over
|
2014-08-31 16:12:26 +02:00
|
|
|
PCM according to the <ulink
|
|
|
|
url="http://dsd-guide.com/dop-open-standard">DoP
|
2014-09-02 14:42:05 +02:00
|
|
|
standard</ulink> is enabled. This wraps DSD
|
2014-08-31 16:12:26 +02:00
|
|
|
samples in fake 24 bit PCM, and is understood by
|
2012-03-21 10:36:19 +01:00
|
|
|
some DSD capable products, but may be harmful to
|
|
|
|
other hardware. Therefore, the default is
|
|
|
|
<parameter>no</parameter> and you can enable the
|
|
|
|
option at your own risk.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2009-03-14 16:01:56 +01:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2014-08-16 07:52:54 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
The according hardware mixer plugin understands the
|
|
|
|
following settings:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>mixer_device</varname>
|
|
|
|
<parameter>DEVICE</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
<para>
|
|
|
|
Sets the ALSA mixer device name, defaulting to
|
|
|
|
<parameter>default</parameter> which lets ALSA
|
|
|
|
pick a value.
|
|
|
|
</para>
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>mixer_control</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
<para>
|
|
|
|
Choose a mixer control, defaulting to
|
|
|
|
<parameter>PCM</parameter>. Type <command>amixer
|
|
|
|
scontrols</command> to get a list of available
|
|
|
|
mixer controls.
|
|
|
|
</para>
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>mixer_index</varname>
|
|
|
|
<parameter>NUMBER</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Choose a mixer control index. This is necessary if
|
|
|
|
there is more than one control with the same name.
|
|
|
|
Defaults to <parameter>0</parameter> (the first
|
|
|
|
one).
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>ao</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
The <varname>ao</varname> plugin uses the portable <ulink
|
|
|
|
url="https://www.xiph.org/ao/"><filename>libao</filename></ulink>
|
|
|
|
library. Use only if there is no native plugin for your
|
|
|
|
operating system.
|
2009-03-14 16:01:56 +01:00
|
|
|
</para>
|
2013-12-11 21:03:11 +01:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>driver</varname>
|
|
|
|
<parameter>D</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The <filename>libao</filename> driver to use for
|
|
|
|
audio output. Possible values depend on what libao
|
|
|
|
drivers are available. See <ulink
|
|
|
|
url="http://www.xiph.org/ao/doc/drivers.html">http://www.xiph.org/ao/doc/drivers.html</ulink>
|
|
|
|
for information on some commonly used drivers.
|
|
|
|
Typical values for Linux include "oss" and "alsa09".
|
|
|
|
The default is "default", which causes libao to
|
|
|
|
select an appropriate plugin.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>options</varname>
|
|
|
|
<parameter>O</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Options to pass to the selected
|
|
|
|
<filename>libao</filename> driver.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>write_size</varname>
|
|
|
|
<parameter>O</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
This specifies how many bytes to write to the audio
|
|
|
|
device at once. This parameter is to work around a
|
|
|
|
bug in older versions of libao on sound cards with
|
|
|
|
very small buffers. The default is 1024.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
|
|
|
|
2016-06-22 18:42:29 +02:00
|
|
|
<section>
|
|
|
|
<title><varname>sndio</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <varname>sndio</varname> plugin uses the <ulink
|
|
|
|
url="http://www.sndio.org/">sndio</ulink> library. It should normally be used
|
|
|
|
on OpenBSD.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>device</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The audio output device <filename>libsndio</filename>
|
|
|
|
will attempt to use. The default is "default" which
|
|
|
|
causes libsndio to select the first output device.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>buffer_time</varname>
|
|
|
|
<parameter>MS</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Set the application buffer time in milliseconds.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2009-03-14 16:01:56 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>fifo</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <varname>fifo</varname> plugin writes raw PCM data to a
|
|
|
|
FIFO (First In, First Out) file. The data can be read by
|
|
|
|
another program.
|
|
|
|
</para>
|
2013-12-11 20:57:59 +01:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>path</varname>
|
|
|
|
<parameter>P</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
This specifies the path of the FIFO to write to.
|
|
|
|
Must be an absolute path. If the path does not
|
2014-08-24 12:42:00 +02:00
|
|
|
exist, it will be created when
|
|
|
|
<application>MPD</application> is started, and
|
|
|
|
removed when <application>MPD</application> is
|
|
|
|
stopped. The FIFO will be created with the same
|
|
|
|
user and group as <application>MPD</application> is
|
2013-12-11 20:57:59 +01:00
|
|
|
running as. Default permissions can be modified by
|
2014-08-24 12:42:00 +02:00
|
|
|
using the builtin shell command
|
|
|
|
<filename>umask</filename>. If a FIFO already
|
|
|
|
exists at the specified path it will be reused, and
|
|
|
|
will not be removed when
|
|
|
|
<application>MPD</application> is stopped. You can
|
|
|
|
use the "mkfifo" command to create this, and then
|
|
|
|
you may modify the permissions to your liking.
|
2013-12-11 20:57:59 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>jack</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
The <varname>jack</varname> plugin connects to a <ulink
|
|
|
|
url="http://jackaudio.org/"><application>JACK</application></ulink>
|
|
|
|
server.
|
2009-03-14 16:01:56 +01:00
|
|
|
</para>
|
2009-11-05 19:55:16 +01:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>client_name</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
The name of the <application>JACK</application>
|
|
|
|
client. Defaults to "Music Player Daemon".
|
2009-11-05 19:55:16 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2009-11-07 17:26:21 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>server_name</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
Optional name of the <application>JACK</application>
|
|
|
|
server.
|
2009-11-07 17:26:21 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2009-11-05 20:01:18 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>autostart</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
If set to <parameter>yes</parameter>, then
|
|
|
|
<filename>libjack</filename> will automatically
|
2014-08-24 12:42:00 +02:00
|
|
|
launch the <application>JACK</application> daemon.
|
|
|
|
Disabled by default.
|
2009-11-05 20:01:18 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2009-11-06 18:58:35 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>source_ports</varname>
|
|
|
|
<parameter>A,B</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
The names of the <application>JACK</application>
|
|
|
|
source ports to be created. By default, the ports
|
|
|
|
"left" and "right" are created. To use more ports,
|
|
|
|
you have to tweak this option.
|
2009-11-06 18:58:35 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2009-11-05 19:55:16 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
2009-11-06 01:54:58 +01:00
|
|
|
<varname>destination_ports</varname>
|
2009-11-05 19:55:16 +01:00
|
|
|
<parameter>A,B</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
The names of the <application>JACK</application>
|
|
|
|
destination ports to connect to.
|
2009-11-05 19:55:16 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>ringbuffer_size</varname>
|
|
|
|
<parameter>NBYTES</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the size of the ring buffer for each channel.
|
|
|
|
Do not configure this value unless you know what
|
|
|
|
you're doing.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="httpd_output">
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
<title><varname>httpd</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <varname>httpd</varname> plugin creates a HTTP server,
|
2014-09-02 10:22:48 +02:00
|
|
|
similar to <ulink
|
|
|
|
url="http://www.shoutcast.com/"><application>ShoutCast</application></ulink>
|
|
|
|
/ <ulink
|
|
|
|
url="http://icecast.org/"><application>IceCast</application></ulink>.
|
|
|
|
HTTP streaming clients like
|
2015-10-27 03:40:51 +01:00
|
|
|
<application>mplayer</application>, <application>VLC</application>,
|
|
|
|
and <application>mpv</application> can connect to it.
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:35:15 +02:00
|
|
|
It is highly recommended to configure a fixed
|
|
|
|
<varname>format</varname>, because a stream cannot switch
|
|
|
|
its audio format on-the-fly when the song changes.
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>port</varname>
|
|
|
|
<parameter>P</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2010-09-25 15:00:43 +02:00
|
|
|
Binds the HTTP server to the specified port.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>bind_to_address</varname>
|
|
|
|
<parameter>ADDR</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Binds the HTTP server to the specified address (IPv4 or
|
|
|
|
IPv6). Multiple addresses in parallel are not supported.
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>encoder</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-09-02 10:22:48 +02:00
|
|
|
Chooses an encoder plugin. A list of encoder
|
|
|
|
plugins can be found in the <link
|
|
|
|
linkend="encoder_plugins">encoder plugin
|
|
|
|
reference</link>.
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
2009-10-29 22:38:18 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>max_clients</varname>
|
|
|
|
<parameter>MC</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets a limit, number of concurrent clients. When set
|
|
|
|
to 0 no limit will apply.
|
|
|
|
</entry>
|
|
|
|
</row>
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2009-03-14 16:01:56 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>null</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <varname>null</varname> plugin does nothing. It
|
|
|
|
discards everything sent to it.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>sync</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
If set to <parameter>no</parameter>, then the timer
|
|
|
|
is disabled - the device will accept PCM chunks at
|
|
|
|
arbitrary rate (useful for benchmarking). The
|
|
|
|
default behaviour is to play in real time.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="oss_output">
|
2009-03-14 16:01:56 +01:00
|
|
|
<title><varname>oss</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The "Open Sound System" plugin is supported on most Unix
|
|
|
|
platforms.
|
|
|
|
</para>
|
|
|
|
|
2014-08-24 12:49:44 +02:00
|
|
|
<para>
|
|
|
|
On Linux, <application>OSS</application> has been superseded
|
|
|
|
by <application>ALSA</application>. Use the <link
|
|
|
|
linkend="alsa_output"><application>ALSA</application> output
|
|
|
|
plugin</link> instead of this one on Linux.
|
|
|
|
</para>
|
|
|
|
|
2009-03-14 16:01:56 +01:00
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>device</varname>
|
|
|
|
<parameter>PATH</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the path of the PCM device. If not specified,
|
2014-08-24 12:42:00 +02:00
|
|
|
then <application>MPD</application> will attempt to
|
|
|
|
open <filename>/dev/sound/dsp</filename> and
|
2009-03-14 16:01:56 +01:00
|
|
|
<filename>/dev/dsp</filename>.
|
|
|
|
</entry>
|
2014-08-16 07:52:54 +02:00
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The according hardware mixer plugin understands the
|
|
|
|
following settings:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>mixer_device</varname>
|
|
|
|
<parameter>DEVICE</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
<para>
|
|
|
|
Sets the OSS mixer device path, defaulting to
|
|
|
|
<filename>/dev/mixer</filename>.
|
|
|
|
</para>
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>mixer_control</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
<para>
|
|
|
|
Choose a mixer control, defaulting to
|
|
|
|
<parameter>PCM</parameter>.
|
|
|
|
</para>
|
|
|
|
</entry>
|
2009-03-14 16:01:56 +01:00
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2009-09-06 21:34:57 +02:00
|
|
|
<section>
|
|
|
|
<title><varname>openal</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
The "OpenAL" plugin uses <ulink
|
|
|
|
url="http://kcat.strangesoft.net/openal.html"><filename>libopenal</filename></ulink>.
|
|
|
|
It is supported on many platforms. Use only if there is no
|
2014-08-24 12:52:54 +02:00
|
|
|
native plugin for your operating system.
|
2009-09-06 21:34:57 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>device</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the device which should be used. This can be
|
|
|
|
any valid OpenAL device name. If not specified, then
|
|
|
|
<filename>libopenal</filename> will choose a default device.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2009-03-14 16:01:56 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>osx</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The "Mac OS X" plugin uses Apple's CoreAudio API.
|
|
|
|
</para>
|
2016-07-13 22:58:13 +02:00
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>device</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the device which should be used. Uses device names as listed in the
|
|
|
|
"Audio Devices" window of "Audio MIDI Setup".
|
|
|
|
</entry>
|
2016-09-19 08:51:14 +02:00
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>hog_device</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Hog the device. This means that it takes exclusive control of the audio
|
|
|
|
output device it is playing through, and no other program can access it.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>sync_sample_rate</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Synchronize the sample rate. It will try to set the output device sample
|
|
|
|
rate to the corresponding sample rate of the file playing. If the output
|
|
|
|
device does not support the sample rate the track has, it will try to
|
|
|
|
select the best possible for each file.
|
|
|
|
</entry>
|
2016-07-13 22:58:13 +02:00
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>channel_map</varname>
|
|
|
|
<parameter>SOURCE,SOURCE,...</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry><para>
|
|
|
|
Specifies a channel map. If your audio device has more than two
|
|
|
|
outputs this allows you to route audio to auxillary outputs. For
|
|
|
|
predictable results you should also specify a "format" with a fixed
|
|
|
|
number of channels, e.g. "*:*:2". The number of items in the channel
|
|
|
|
map must match the number of output channels of your output device.
|
|
|
|
Each list entry specifies the source for that output channel; use "-1"
|
|
|
|
to silence an output. For example, if you have a four-channel output
|
|
|
|
device and you wish to send stereo sound (format "*:*:2") to outputs 3
|
|
|
|
and 4 while leaving outputs 1 and 2 silent then set the channel map to
|
|
|
|
"-1,-1,0,1". In this example '0' and '1' denote the left and right
|
|
|
|
channel respectively.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
The channel map may not refer to outputs that do not exist according
|
|
|
|
to the format. If the format is "*:*:1" (mono) and you have a
|
|
|
|
four-channel sound card then "-1,-1,0,0" (dual mono output on the
|
|
|
|
second pair of sound card outputs) is a valid channel map but
|
|
|
|
"-1,-1,0,1" is not because the second channel ('1') does not exist
|
|
|
|
when the output is mono.
|
|
|
|
</para></entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>pipe</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <varname>pipe</varname> plugin starts a program and
|
|
|
|
writes raw PCM data into its standard input.
|
|
|
|
</para>
|
2009-07-06 22:15:36 +02:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>command</varname>
|
|
|
|
<parameter>CMD</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
This command is invoked with the shell.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="pulse_output">
|
2009-03-14 16:01:56 +01:00
|
|
|
<title><varname>pulse</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
The <varname>pulse</varname> plugin connects to a <ulink
|
|
|
|
url="http://www.freedesktop.org/wiki/Software/PulseAudio/"><application>PulseAudio</application></ulink>
|
2009-03-14 16:01:56 +01:00
|
|
|
server.
|
|
|
|
</para>
|
2009-07-06 22:17:27 +02:00
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>server</varname>
|
|
|
|
<parameter>HOSTNAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-09-02 10:22:48 +02:00
|
|
|
Sets the host name of the
|
|
|
|
<application>PulseAudio</application> server. By
|
2014-08-24 12:42:00 +02:00
|
|
|
default, <application>MPD</application> connects to
|
2014-09-02 10:22:48 +02:00
|
|
|
the local <application>PulseAudio</application>
|
|
|
|
server.
|
2009-07-06 22:17:27 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>sink</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-09-02 10:22:48 +02:00
|
|
|
Specifies the name of the
|
|
|
|
<application>PulseAudio</application> sink
|
2014-08-24 12:42:00 +02:00
|
|
|
<application>MPD</application> should play on.
|
2009-07-06 22:17:27 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
|
|
|
|
2014-02-06 21:46:29 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>roar</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <varname>roar</varname> plugin connects to a <ulink
|
|
|
|
url="http://roaraudio.keep-cool.org/">RoarAudio</ulink>
|
|
|
|
server.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>server</varname>
|
|
|
|
<parameter>HOSTNAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
The host name of the RoarAudio server. If not
|
2014-08-24 12:42:00 +02:00
|
|
|
specified, then <application>MPD</application> will
|
|
|
|
connect to the default locations.
|
2014-02-06 21:46:29 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>role</varname>
|
|
|
|
<parameter>ROLE</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
The "role" that <application>MPD</application>
|
|
|
|
registers itself as in the RoarAudio server. The
|
|
|
|
default is "music".
|
2014-02-06 21:46:29 +01:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2009-03-14 16:01:56 +01:00
|
|
|
<section>
|
2009-08-24 18:57:06 +02:00
|
|
|
<title><varname>recorder</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The <varname>recorder</varname> plugin writes the audio
|
2014-08-24 12:42:00 +02:00
|
|
|
played by <application>MPD</application> to a file. This
|
|
|
|
may be useful for recording radio streams.
|
2009-08-24 18:57:06 +02:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>path</varname>
|
|
|
|
<parameter>P</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Write to this file.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2015-01-10 08:58:31 +01:00
|
|
|
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>format_path</varname>
|
|
|
|
<parameter>P</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
<para>
|
|
|
|
An alternative to <varname>path</varname> which
|
|
|
|
provides a format string referring to tag values.
|
2015-01-22 19:10:15 +01:00
|
|
|
|
|
|
|
The special tag <varname>iso8601</varname> emits
|
|
|
|
the current date and time in <ulink
|
|
|
|
url="https://en.wikipedia.org/wiki/ISO_8601">ISO8601</ulink>
|
|
|
|
format (UTC).
|
2015-01-10 08:58:31 +01:00
|
|
|
Every time a new song starts or a new tag gets
|
|
|
|
received from a radio station, a new file is
|
|
|
|
opened. If the format does not render a file
|
|
|
|
name, nothing is recorded.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
A tag name enclosed in percent signs ('%') is
|
|
|
|
replaced with the tag value. Example:
|
|
|
|
<parameter>~/.mpd/recorder/%artist% -
|
|
|
|
%title%.ogg</parameter>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Square brackets can be used to group a substring.
|
|
|
|
If none of the tags referred in the group can be
|
|
|
|
found, the whole group is omitted. Example:
|
|
|
|
<parameter>[~/.mpd/recorder/[%artist% -
|
|
|
|
]%title%.ogg]</parameter> (this omits the dash
|
|
|
|
when no artist tag exists; if title also doesn't
|
|
|
|
exist, no file is written)
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The operators "|" (logical "or") and "&"
|
|
|
|
(logical "and") can be used to select portions of
|
|
|
|
the format string depending on the existing tag
|
|
|
|
values. Example:
|
|
|
|
<parameter>~/.mpd/recorder/[%title|%name%].ogg</parameter>
|
|
|
|
(use the "name" tag if no title exists)
|
|
|
|
</para>
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
|
2009-08-24 18:57:06 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>encoder</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-09-02 10:22:48 +02:00
|
|
|
Chooses an encoder plugin. A list of encoder
|
|
|
|
plugins can be found in the <link
|
|
|
|
linkend="encoder_plugins">encoder plugin
|
|
|
|
reference</link>.
|
2009-08-24 18:57:06 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="shout_output">
|
2009-03-14 16:01:56 +01:00
|
|
|
<title><varname>shout</varname></title>
|
|
|
|
|
|
|
|
<para>
|
2014-09-02 10:22:48 +02:00
|
|
|
The <varname>shout</varname> plugin connects to a <ulink
|
|
|
|
url="http://www.shoutcast.com/"><application>ShoutCast</application></ulink>
|
|
|
|
or <ulink
|
|
|
|
url="http://icecast.org/"><application>IceCast</application></ulink>
|
|
|
|
server. It forwards tags to this server.
|
2009-03-14 16:01:56 +01:00
|
|
|
</para>
|
2009-07-06 22:25:28 +02:00
|
|
|
|
|
|
|
<para>
|
|
|
|
You must set a <varname>format</varname>.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>host</varname>
|
|
|
|
<parameter>HOSTNAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-09-02 10:22:48 +02:00
|
|
|
Sets the host name of the <ulink
|
|
|
|
url="http://www.shoutcast.com/"><application>ShoutCast</application></ulink>
|
|
|
|
/ <ulink
|
|
|
|
url="http://icecast.org/"><application>IceCast</application></ulink>
|
|
|
|
server.
|
2009-07-06 22:25:28 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>port</varname>
|
|
|
|
<parameter>PORTNUMBER</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Connect to this port number on the specified host.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>timeout</varname>
|
|
|
|
<parameter>SECONDS</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Set the timeout for the shout connection in seconds.
|
|
|
|
Defaults to 2 seconds.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2013-12-11 20:54:42 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>protocol</varname>
|
|
|
|
<parameter>icecast2|icecast1|shoutcast</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Specifies the protocol that wil be used to connect
|
2014-09-02 10:22:48 +02:00
|
|
|
to the server. The default is
|
|
|
|
"<parameter>icecast2</parameter>".
|
2013-12-11 20:54:42 +01:00
|
|
|
|
|
|
|
</entry>
|
|
|
|
</row>
|
2009-07-06 22:25:28 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>mount</varname>
|
|
|
|
<parameter>URI</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-08-24 12:42:00 +02:00
|
|
|
Mounts the <application>MPD</application> stream in
|
|
|
|
the specified URI.
|
2009-07-06 22:25:28 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>user</varname>
|
|
|
|
<parameter>USERNAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the user name for submitting the stream to the
|
|
|
|
server. Default is "source".
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>password</varname>
|
|
|
|
<parameter>PWD</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the password for submitting the stream to the
|
|
|
|
server.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>name</varname>
|
|
|
|
<parameter>NAME</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the name of the stream.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>genre</varname>
|
|
|
|
<parameter>GENRE</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the genre of the stream (optional).
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>description</varname>
|
|
|
|
<parameter>DESCRIPTION</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets a short description of the stream (optional).
|
|
|
|
</entry>
|
|
|
|
</row>
|
2011-02-04 14:14:29 +01:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>url</varname>
|
|
|
|
<parameter>URL</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets a URL associated with the stream (optional).
|
|
|
|
</entry>
|
|
|
|
</row>
|
2009-07-06 22:25:28 +02:00
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>public</varname>
|
|
|
|
<parameter>yes|no</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Specifies whether the stream should be "public".
|
2014-08-24 12:42:00 +02:00
|
|
|
Default is <parameter>no</parameter>.
|
2009-07-06 22:25:28 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>encoder</varname>
|
|
|
|
<parameter>PLUGIN</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
2014-09-02 10:22:48 +02:00
|
|
|
Chooses an encoder plugin. Default is <link
|
|
|
|
linkend="vorbis_encoder"><parameter>vorbis</parameter></link>.
|
|
|
|
A list of encoder plugins can be found in the <link
|
|
|
|
linkend="encoder_plugins">encoder plugin
|
|
|
|
reference</link>.
|
2009-07-06 22:25:28 +02:00
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>solaris</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The "Solaris" plugin runs only on SUN Solaris, and plays via
|
|
|
|
<filename>/dev/audio</filename>.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>Setting</entry>
|
|
|
|
<entry>Description</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>
|
|
|
|
<varname>device</varname>
|
|
|
|
<parameter>PATH</parameter>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
Sets the path of the audio device, defaults to
|
|
|
|
<filename>/dev/audio</filename>.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</section>
|
2009-03-14 16:01:56 +01:00
|
|
|
</section>
|
2009-10-16 17:51:33 +02:00
|
|
|
|
2014-09-02 10:22:48 +02:00
|
|
|
<section id="playlist_plugins">
|
2009-10-16 17:51:33 +02:00
|
|
|
<title>Playlist plugins</title>
|
|
|
|
|
2012-02-12 15:20:38 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>embcue</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Reads CUE sheets from the "CUESHEET" tag of song files.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2009-10-16 17:51:33 +02:00
|
|
|
<section>
|
|
|
|
<title><varname>m3u</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Reads <filename>.m3u</filename> playlist files.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2009-11-06 00:41:42 +01:00
|
|
|
<section>
|
|
|
|
<title><varname>extm3u</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Reads extended <filename>.m3u</filename> playlist files.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
2009-10-16 17:51:33 +02:00
|
|
|
<section>
|
|
|
|
<title><varname>pls</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Reads <filename>.pls</filename> playlist files.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title><varname>xspf</varname></title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Reads <ulink url="http://www.xspf.org/">XSPF</ulink>
|
|
|
|
playlist files.
|
|
|
|
</para>
|
|
|
|
</section>
|
|
|
|
</section>
|
2009-03-12 17:06:48 +01:00
|
|
|
</chapter>
|
|
|
|
</book>
|