diff options
author | Max Kellermann <max@duempel.org> | 2014-02-06 18:36:06 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-06 18:37:27 +0100 |
commit | 90886c07603854fe2b46e28890ad88222eea6933 (patch) | |
tree | c9ce41e0ca1244f8351647c5ea891b6566aeec04 /doc | |
parent | 957beeb0e943f9bad9d5fae02545cf39bc9fc201 (diff) | |
download | mpd-90886c07603854fe2b46e28890ad88222eea6933.tar.gz mpd-90886c07603854fe2b46e28890ad88222eea6933.tar.xz mpd-90886c07603854fe2b46e28890ad88222eea6933.zip |
doc/user: sort input plugins
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user.xml | 106 |
1 files changed, 53 insertions, 53 deletions
diff --git a/doc/user.xml b/doc/user.xml index 8038e7bbe..e73282277 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -986,10 +986,31 @@ systemctl start mpd.socket</programlisting> <title>Input plugins</title> <section> - <title><varname>curl</varname></title> + <title><varname>alsa</varname></title> <para> - Opens remote files or streams over HTTP. + Allows MPD 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: + </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. </para> <informaltable> @@ -1003,19 +1024,13 @@ systemctl start mpd.socket</programlisting> <tbody> <row> <entry> - <varname>proxy</varname> - </entry> - <entry> - Sets the address of the HTTP proxy server. - </entry> - </row> - <row> - <entry> - <varname>proxy_user</varname>, - <varname>proxy_password</varname> + <varname>default_byte_order</varname> + <parameter>little_endian|big_endian</parameter> </entry> <entry> - Configures proxy authentication. + If the CD drive does not specify a byte order, MPD + assumes it is the CPU's native byte order. This + setting allows overriding this. </entry> </row> </tbody> @@ -1024,29 +1039,10 @@ systemctl start mpd.socket</programlisting> </section> <section> - <title><varname>file</varname></title> - - <para> - Opens local files. - </para> - </section> - - <section> - <title><varname>mms</varname></title> - - <para> - Plays streams with the MMS protocol. - </para> - </section> - - <section> - <title><varname>cdio_paranoia</varname></title> + <title><varname>curl</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. + Opens remote files or streams over HTTP. </para> <informaltable> @@ -1060,13 +1056,19 @@ systemctl start mpd.socket</programlisting> <tbody> <row> <entry> - <varname>default_byte_order</varname> - <parameter>little_endian|big_endian</parameter> + <varname>proxy</varname> </entry> <entry> - If the CD drive does not specify a byte order, MPD - assumes it is the CPU's native byte order. This - setting allows overriding this. + 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. </entry> </row> </tbody> @@ -1135,34 +1137,32 @@ systemctl start mpd.socket</programlisting> </section> <section> - <title><varname>smbclient</varname></title> + <title><varname>file</varname></title> <para> - Allows MPD to access files on SMB/CIFS servers (e.g. Samba - or Microsoft Windows). All URIs with the - <filename>smb://</filename> scheme are used. Example: + Opens local files. </para> + </section> + + <section> + <title><varname>mms</varname></title> <para> - <filename>mpc add smb://servername/sharename/filename.ogg</filename> + Plays streams with the MMS protocol. </para> </section> <section> - <title><varname>alsa</varname></title> + <title><varname>smbclient</varname></title> <para> - Allows MPD 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: + Allows MPD to access files on SMB/CIFS servers (e.g. Samba + or Microsoft Windows). All URIs with the + <filename>smb://</filename> scheme are used. Example: </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 + <filename>mpc add smb://servername/sharename/filename.ogg</filename> </para> </section> </section> |