mpd/doc/protocol.rst

1684 lines
53 KiB
ReStructuredText
Raw Normal View History

########
Protocol
########
2018-08-28 18:08:22 +02:00
General protocol syntax
***********************
2018-08-28 18:08:22 +02:00
Protocol overview
=================
2018-11-12 13:01:43 +01:00
The :program:`MPD` command protocol exchanges
2018-08-28 18:08:22 +02:00
line-based text records between client and server over TCP.
Once the client is connected to the server, they conduct a
conversation until the client closes the connection. The
conversation flow is always initiated by the client.
All data between the client and the server is encoded in
UTF-8.
2018-08-28 18:08:22 +02:00
The client transmits a command sequence, terminated by the
newline character ``\n``. The server will
respond with one or more lines, the last of which will be a
completion code.
When the client connects to the server, the server will answer
with the following line::
2018-08-28 18:08:22 +02:00
OK MPD version
2018-08-28 18:08:22 +02:00
where ``version`` is a version identifier such as
0.12.2. This version identifier is the version of the protocol
spoken, not the real version of the daemon. (There is no way to
retrieve this real version identifier from the connection.)
Requests
========
.. code-block:: none
COMMAND [ARG...]
2018-08-28 18:08:22 +02:00
If arguments contain spaces, they should be surrounded by double
quotation marks.
Argument strings are separated from the command and any other
arguments by linear white-space (' ' or '\\t').
Responses
=========
A command returns ``OK`` on completion or
``ACK some error`` on failure. These
denote the end of command execution.
Some commands return more data before the response ends with ``OK``.
Each line is usually in the form ``NAME: VALUE``. Example::
foo: bar
OK
.. _binary:
Binary Responses
----------------
Some commands can return binary data. This is initiated by a line
containing ``binary: 1234`` (followed as usual by a newline). After
that, the specified number of bytes of binary data follows, then a
newline, and finally the ``OK`` line.
If the object to be transmitted is large, the server may choose a
reasonable chunk size and transmit only a portion. The maximum chunk
size can be changed by clients with the :ref:`binarylimit
<command_binarylimit>` command.
Usually, the response also contains a ``size`` line which specifies
the total (uncropped) size, and the command usually has a way to
specify an offset into the object; this way, the client can copy the
whole file without blocking the connection for too long.
Example::
foo: bar
binary: 42
<42 bytes>
OK
2018-08-28 18:08:22 +02:00
Failure responses
-----------------
The nature of the error can be gleaned from the information
that follows the ``ACK``.
``ACK`` lines are of the form:
.. code-block:: none
ACK [error@command_listNum] {current_command} message_text
2018-08-28 18:08:22 +02:00
These responses are generated by a call to
``commandError``. They contain four separate
terms. Let's look at each of them:
- ``error``: numeric value of one
of the ``ACK_ERROR`` constants defined
in `src/protocol/Ack.hxx`.
- ``command_listNum``: offset of the command that caused the error in
a :ref:`Command List <command_lists>`. An error will always cause a
command list to terminate at the command that causes the error.
2018-08-28 18:08:22 +02:00
- ``current_command``: name of the command, in a :ref:`Command List
<command_lists>`, that was executing when the error occurred.
2018-08-28 18:08:22 +02:00
- ``message_text``:
some (hopefully) informative text that describes the
nature of the error.
An example might help. Consider the following sequence
sent from the client to the server::
2018-08-28 18:08:22 +02:00
command_list_begin
volume 86
play 10240
status
command_list_end
2018-08-28 18:08:22 +02:00
The server responds with::
2018-08-28 18:08:22 +02:00
ACK [50@1] {play} song doesn't exist: "10240"
2018-08-28 18:08:22 +02:00
This tells us that the play command, which was the second in the list
(the first or only command is numbered 0), failed with error 50. The
number 50 translates to ``ACK_ERROR_NO_EXIST`` -- the song doesn't
exist. This is reiterated by the message text which also tells us
which song doesn't exist.
2018-08-28 18:08:22 +02:00
.. _command_lists:
Command lists
=============
To facilitate faster adding of files etc. you can pass a list
of commands all at once using a command list. The command
list begins with `command_list_begin` or
`command_list_ok_begin` and ends with
`command_list_end`.
It does not execute any commands until the list has ended. The
response is a concatentation of all individual responses.
On success for all commands,
2018-08-28 18:08:22 +02:00
``OK`` is returned. If a command
fails, no more commands are executed and the appropriate
``ACK`` error is returned. If
`command_list_ok_begin` is used,
``list_OK`` is returned for each
successful command executed in the command list.
Ranges
======
Some commands (e.g. :ref:`delete <command_delete>`) allow specifying a
range in the form ``START:END`` (the ``END`` item is not included in
the range, similar to ranges in the Python programming language). If
``END`` is omitted, then the maximum possible value is assumed.
2018-08-28 18:08:22 +02:00
.. _filter_syntax:
Filters
=======
All commands which search for songs (e.g. :ref:`find <command_find>`
and :ref:`searchadd <command_searchadd>`) share a common filter
syntax::
2018-08-28 18:08:22 +02:00
find EXPRESSION
2018-08-28 18:08:22 +02:00
2020-07-10 18:01:53 +02:00
``EXPRESSION`` is a string enclosed in parentheses which can be one
of:
2018-08-28 18:08:22 +02:00
- ``(TAG == 'VALUE')``: match a tag value; if there are multiple
values of the given type, at least one must match.
``(TAG != 'VALUE')``: mismatch a tag value; if there are multiple
values of the given type, none of them must match.
The special tag ``any`` checks all
tag types.
``AlbumArtist`` looks for
2018-08-28 18:08:22 +02:00
``VALUE`` in ``AlbumArtist``
and falls back to ``Artist`` tags if
``AlbumArtist`` does not exist.
``VALUE`` is what to find.
An empty value string means: match only if the given tag type does
not exist at all; this implies that negation with an empty value
checks for the existence of the given tag type.
2018-08-28 18:08:22 +02:00
- ``(TAG contains 'VALUE')`` checks if the given value is a substring
of the tag value.
- ``(TAG =~ 'VALUE')`` and ``(TAG !~ 'VALUE')`` use a Perl-compatible
regular expression instead of doing a simple string comparison.
(This feature is only available if :program:`MPD` was compiled with
:file:`libpcre`)
2018-08-28 18:08:22 +02:00
- ``(file == 'VALUE')``: match the full song URI
(relative to the music directory).
- ``(base 'VALUE')``: restrict the search to
songs in the given directory (relative to the music
directory).
- ``(modified-since 'VALUE')``: compares the
file's time stamp with the given value (ISO 8601 or UNIX
time stamp).
- ``(AudioFormat == 'SAMPLERATE:BITS:CHANNELS')``: compares the audio
format with the given value. See :ref:`audio_output_format` for a
detailed explanation.
2018-08-28 18:08:22 +02:00
- ``(AudioFormat =~ 'SAMPLERATE:BITS:CHANNELS')``:
matches the audio format with the given mask (i.e. one
or more attributes may be ``*``).
2018-08-28 18:08:22 +02:00
- ``(!EXPRESSION)``: negate an expression. Note that each expression
2020-07-10 18:01:53 +02:00
must be enclosed in parentheses, e.g. :code:`(!(artist == 'VALUE'))`
(which is equivalent to :code:`(artist != 'VALUE')`)
2018-08-28 18:08:22 +02:00
- ``(EXPRESSION1 AND EXPRESSION2 ...)``: combine two or
more expressions with logical "and". Note that each expression must
2020-07-10 18:01:53 +02:00
be enclosed in parentheses, e.g. :code:`((artist == 'FOO') AND
(album == 'BAR'))`
2018-08-28 18:08:22 +02:00
2019-08-26 16:06:39 +02:00
The :command:`find` commands are case sensitive, while
:command:`search` and related commands ignore case.
Prior to MPD 0.21, the syntax looked like this::
2018-08-28 18:08:22 +02:00
find TYPE VALUE
2018-08-28 18:08:22 +02:00
Escaping String Values
----------------------
String values are quoted with single or double quotes, and special
characters within those values must be escaped with the backslash
(``\``). Keep in mind that the backslash is also the escape character
on the protocol level, which means you may need to use double
backslash.
Example expression which matches an artist named ``foo'bar"``::
(Artist == "foo\'bar\"")
At the protocol level, the command must look like this::
find "(Artist == \"foo\\'bar\\\"\")"
The double quotes enclosing the artist name must be escaped because
they are inside a double-quoted ``find`` parameter. The single quote
inside that artist name must be escaped with two backslashes; one to
escape the single quote, and another one because the backslash inside
the string inside the parameter needs to be escaped as well. The
double quote has three confusing backslashes: two to build one
backslash, and another one to escape the double quote on the protocol
level. Phew!
To reduce confusion, you should use a library such as `libmpdclient
<https://www.musicpd.org/libs/libmpdclient/>`_ which escapes command
arguments for you.
2018-08-28 18:08:22 +02:00
.. _tags:
Tags
====
2018-11-12 13:01:43 +01:00
The following tags are supported by :program:`MPD`:
2018-08-28 18:08:22 +02:00
* **artist**: the artist name. Its meaning is not well-defined; see "*composer*" and "*performer*" for more specific tags.
* **artistsort**: same as artist, but for sorting. This usually omits prefixes such as "The".
* **album**: the album name.
* **albumsort**: same as album, but for sorting.
* **albumartist**: on multi-artist albums, this is the artist name which shall be used for the whole album. The exact meaning of this tag is not well-defined.
* **albumartistsort**: same as albumartist, but for sorting.
* **title**: the song title.
* **track**: the decimal track number within the album.
* **name**: a name for this song. This is not the song title. The exact meaning of this tag is not well-defined. It is often used by badly configured internet radio stations with broken tags to squeeze both the artist name and the song title in one tag.
* **genre**: the music genre.
* **mood**: the mood of the audio with a few keywords.
* **date**: the song's release date. This is usually a 4-digit year.
* **originaldate**: the song's original release date.
* **composer**: the artist who composed the song.
* **composersort**: same as composer, but for sorting.
* **performer**: the artist who performed the song.
2019-10-24 20:34:00 +02:00
* **conductor**: the conductor who conducted the song.
* **work**: `"a work is a distinct intellectual or artistic creation,
which can be expressed in the form of one or more audio recordings" <https://musicbrainz.org/doc/Work>`_
* **ensemble**: the ensemble performing this song, e.g. "Wiener Philharmoniker".
* **movement**: name of the movement, e.g. "Andante con moto".
* **movementnumber**: movement number, e.g. "2" or "II".
* **location**: location of the recording, e.g. "Royal Albert Hall".
* **grouping**: "used if the sound belongs to a larger category of
sounds/music" (`from the IDv2.4.0 TIT1 description
<http://id3.org/id3v2.4.0-frames>`_).
* **comment**: a human-readable comment about this song. The exact meaning of this tag is not well-defined.
* **disc**: the decimal disc number in a multi-disc album.
* **label**: the name of the label or publisher.
* **musicbrainz_artistid**: the artist id in the `MusicBrainz <https://picard.musicbrainz.org/docs/mappings/>`_ database.
* **musicbrainz_albumid**: the album id in the `MusicBrainz <https://picard.musicbrainz.org/docs/mappings/>`_ database.
* **musicbrainz_albumartistid**: the album artist id in the `MusicBrainz <https://picard.musicbrainz.org/docs/mappings/>`_ database.
* **musicbrainz_trackid**: the track id in the `MusicBrainz <https://picard.musicbrainz.org/docs/mappings/>`_ database.
* **musicbrainz_releasetrackid**: the release track id in the `MusicBrainz <https://picard.musicbrainz.org/docs/mappings/>`_ database.
* **musicbrainz_workid**: the work id in the `MusicBrainz <https://picard.musicbrainz.org/docs/mappings/>`_ database.
2018-08-28 18:08:22 +02:00
There can be multiple values for some of these tags. For
2018-11-12 13:01:43 +01:00
example, :program:`MPD` may return multiple
2018-08-28 18:08:22 +02:00
lines with a ``performer`` tag. A tag value is
a UTF-8 string.
.. _other_metadata:
Other Metadata
==============
The response to :ref:`lsinfo <command_lsinfo>` and similar commands
may contain :ref:`song tags <tags>` and other metadata, specifically:
2018-08-28 18:08:22 +02:00
- ``duration``: the duration of the song in
seconds; may contain a fractional part.
- ``time``: like ``duration``,
but as integer value. This is deprecated and is only here
for compatibility with older clients. Do not use.
- ``Range``: if this is a queue item referring only to a portion of
the song file, then this attribute contains the time range in the
form ``START-END`` or ``START-`` (open ended); both ``START`` and
``END`` are time stamps within the song in seconds (may contain a
fractional part). Example: ``60-120`` plays only the second minute;
"``180`` skips the first three minutes.
2018-08-28 18:08:22 +02:00
- ``Format``: the audio format of the song
(or an approximation to a format supported by MPD and the
decoder plugin being used). When playing this file, the
``audio`` value in the :ref:`status <command_status>`
2018-08-28 18:08:22 +02:00
response should be the same.
- ``Last-Modified``: the time stamp of the
last modification of the underlying file in ISO 8601
format. Example:
"*2008-09-28T20:04:57Z*"
Recipes
*******
2018-08-28 18:08:22 +02:00
Queuing
=======
2018-11-12 13:01:43 +01:00
Often, users run :program:`MPD` with :ref:`random <command_random>`
enabled, but want to be able to insert songs "before" the rest of the
playlist. That is commonly called "queuing".
2018-08-28 18:08:22 +02:00
2018-11-12 13:01:43 +01:00
:program:`MPD` implements this by allowing the client to specify a
"priority" for each song in the playlist (commands :ref:`priod
<command_prio>` and :ref:`priodid <command_prioid>`). A higher
priority means that the song is going to be played before the other
songs.
2018-08-28 18:08:22 +02:00
2018-11-12 13:01:43 +01:00
In "random" mode, :program:`MPD` maintains an
2018-08-28 18:08:22 +02:00
internal randomized sequence of songs. In this sequence,
songs with a higher priority come first, and all songs with
the same priority are shuffled (by default, all songs are
shuffled, because all have the same priority "0"). When you
increase the priority of a song, it is moved to the front of
the sequence according to its new priority, but always after
the current one. A song that has been played already (it's
"before" the current song in that sequence) will only be
scheduled for repeated playback if its priority has become
bigger than the priority of the current song. Decreasing the
priority of a song will move it farther to the end of the
sequence. Changing the priority of the current song has no
effect on the sequence. During playback, a song's priority is
reset to zero.
Command reference
*****************
2018-08-28 18:08:22 +02:00
.. note:: For manipulating playlists and playing, there are two sets of
commands. One set uses the song id of a song in the playlist,
while another set uses the playlist position of the song. The
commands using song ids should be used instead of the commands
that manipulate and control playback based on playlist
position. Using song ids is a safer method when multiple
2018-11-12 13:01:43 +01:00
clients are interacting with :program:`MPD`.
2018-08-28 18:08:22 +02:00
2018-11-12 13:01:43 +01:00
Querying :program:`MPD`'s status
2018-08-28 18:08:22 +02:00
================================
.. _command_clearerror:
:command:`clearerror`
2018-08-28 18:08:22 +02:00
Clears the current error message in status (this is also
accomplished by any command that starts playback).
.. _command_currentsong:
:command:`currentsong`
2018-08-28 18:08:22 +02:00
Displays the song info of the current song (same song that
is identified in status). Information about the current song
is represented by key-value pairs, one on each line. The first
pair must be the `file` key-value pair.
2018-08-28 18:08:22 +02:00
.. _command_idle:
:command:`idle [SUBSYSTEMS...]` [#since_0_14]_
2018-08-28 18:08:22 +02:00
Waits until there is a noteworthy change in one or more
2018-11-12 13:01:43 +01:00
of :program:`MPD`'s subsystems. As soon
2018-08-28 18:08:22 +02:00
as there is one, it lists all changed systems in a line
in the format ``changed:
SUBSYSTEM``, where SUBSYSTEM is one of the
following:
- ``database``: the song database has been modified after :ref:`update <command_update>`.
2018-08-28 18:08:22 +02:00
- ``update``: a database update has started or finished. If the database was modified during the update, the ``database`` event is also emitted.
- ``stored_playlist``: a stored playlist has been modified, renamed, created or deleted
- ``playlist``: the queue (i.e. the current playlist) has been modified
- ``player``: the player has been started, stopped or seeked or
tags of the currently playing song have changed (e.g. received
from stream)
2018-08-28 18:08:22 +02:00
- ``mixer``: the volume has been changed
- ``output``: an audio output has been added, removed or modified (e.g. renamed, enabled or disabled)
- ``options``: options like repeat, random, crossfade, replay gain
- ``partition``: a partition was added, removed or changed
- ``sticker``: the sticker database has been modified.
- ``subscription``: a client has subscribed or unsubscribed to a channel
- ``message``: a message was received on a channel this client is subscribed to; this event is only emitted when the queue is empty
- ``neighbor``: a neighbor was found or lost
- ``mount``: the mount list has changed
Change events accumulate, even while the connection is not in
2020-07-10 18:01:53 +02:00
"idle" mode; no events get lost while the client is doing
something else with the connection. If an event had already
occurred since the last call, the new :ref:`idle <command_idle>`
2018-08-28 18:08:22 +02:00
command will return immediately.
2018-08-28 18:08:22 +02:00
While a client is waiting for `idle`
results, the server disables timeouts, allowing a client
to wait for events as long as mpd runs. The
`idle` command can be canceled by
sending the command `noidle` (no other
2018-11-12 13:01:43 +01:00
commands are allowed). :program:`MPD`
2018-08-28 18:08:22 +02:00
will then leave `idle` mode and print
results immediately; might be empty at this time.
If the optional ``SUBSYSTEMS`` argument
2018-11-12 13:01:43 +01:00
is used, :program:`MPD` will only send
2018-08-28 18:08:22 +02:00
notifications when something changed in one of the
specified subsytems.
.. _command_status:
:command:`status`
2018-08-28 18:08:22 +02:00
Reports the current status of the player and the volume
level.
- ``partition``: the name of the current partition (see
:ref:`partition_commands`)
2018-11-12 12:57:53 +01:00
- ``volume``: ``0-100`` (deprecated: ``-1`` if the volume cannot
be determined)
2018-08-28 18:08:22 +02:00
- ``repeat``: ``0`` or ``1``
- ``random``: ``0`` or ``1``
- ``single`` [#since_0_15]_: ``0``, ``1``, or ``oneshot`` [#since_0_21]_
- ``consume`` [#since_0_15]_: ``0`` or ``1``
2018-08-28 18:08:22 +02:00
- ``playlist``: 31-bit unsigned integer, the playlist version number
- ``playlistlength``: integer, the length of the playlist
- ``state``: ``play``, ``stop``, or ``pause``
2018-08-28 18:08:22 +02:00
- ``song``: playlist song number of the current song stopped on or playing
- ``songid``: playlist songid of the current song stopped on or playing
- ``nextsong`` [#since_0_15]_: playlist song number of the next song to be played
- ``nextsongid`` [#since_0_15]_: playlist songid of the next song to be played
- ``time``: total time elapsed (of current playing/paused song) in seconds
2018-11-12 12:57:53 +01:00
(deprecated, use ``elapsed`` instead)
- ``elapsed`` [#since_0_16]_: Total time elapsed within the
current song in seconds, but with higher resolution.
- ``duration`` [#since_0_20]_: Duration of the current song in seconds.
2018-08-28 18:08:22 +02:00
- ``bitrate``: instantaneous bitrate in kbps
- ``xfade``: ``crossfade`` in seconds (see :ref:`crossfading`)
2018-08-28 18:08:22 +02:00
- ``mixrampdb``: ``mixramp`` threshold in dB
- ``mixrampdelay``: ``mixrampdelay`` in seconds
- ``audio``: The format emitted by the decoder plugin during
playback, format: ``samplerate:bits:channels``. See
:ref:`audio_output_format` for a detailed explanation.
2018-08-28 18:08:22 +02:00
- ``updating_db``: ``job id``
- ``error``: if there is an error, returns message here
:program:`MPD` may omit lines which have no (known) value. Older
:program:`MPD` versions used to have a "magic" value for
"unknown", e.g. ":samp:`volume: -1`".
.. _command_stats:
:command:`stats`
2018-08-28 18:08:22 +02:00
Displays statistics.
2018-08-28 18:08:22 +02:00
- ``artists``: number of artists
- ``albums``: number of albums
- ``songs``: number of songs
- ``uptime``: daemon uptime in seconds
- ``db_playtime``: sum of all song times in the database in seconds
- ``db_update``: last db update in UNIX time (seconds since
1970-01-01 UTC)
2018-08-28 18:08:22 +02:00
- ``playtime``: time length of music played
Playback options
================
.. _command_consume:
:command:`consume {STATE}` [#since_0_15]_
2018-08-28 18:08:22 +02:00
Sets consume state to ``STATE``,
``STATE`` should be 0 or 1.
When consume is activated, each song played is removed from playlist.
.. _command_crossfade:
:command:`crossfade {SECONDS}`
Sets crossfading between songs. See :ref:`crossfading`.
2018-08-28 18:08:22 +02:00
.. _command_mixrampdb:
:command:`mixrampdb {deciBels}`
Sets the threshold at which songs will be overlapped.
See :ref:`mixramp`.
2018-08-28 18:08:22 +02:00
.. _command_mixrampdelay:
:command:`mixrampdelay {SECONDS}`
2018-08-28 18:08:22 +02:00
Additional time subtracted from the overlap calculated by mixrampdb. A value of "nan" disables MixRamp overlapping and falls back to crossfading.
See :ref:`mixramp`.
2018-08-28 18:08:22 +02:00
.. _command_random:
:command:`random {STATE}`
2018-08-28 18:08:22 +02:00
Sets random state to ``STATE``,
``STATE`` should be 0 or 1.
.. _command_repeat:
:command:`repeat {STATE}`
2018-08-28 18:08:22 +02:00
Sets repeat state to ``STATE``,
``STATE`` should be 0 or 1.
.. _command_setvol:
:command:`setvol {VOL}`
2018-08-28 18:08:22 +02:00
Sets volume to ``VOL``, the range of
volume is 0-100.
.. _command_getvol:
:command:`getvol` [#since_0_23]_
Read the volume. The result is a ``volume:`` line like in
:ref:`status <command_status>`. If there is no mixer, MPD will
emit an empty response. Example::
getvol
volume: 42
OK
.. _command_single:
:command:`single {STATE}` [#since_0_15]_
2018-08-28 18:08:22 +02:00
Sets single state to ``STATE``,
``STATE`` should be ``0``, ``1`` or ``oneshot`` [#since_0_21]_.
2018-08-28 18:08:22 +02:00
When single is activated, playback is stopped after current song, or
song is repeated if the 'repeat' mode is enabled.
.. _command_replay_gain_mode:
:command:`replay_gain_mode {MODE}` [#since_0_16]_
2018-08-28 18:08:22 +02:00
Sets the replay gain mode. One of
``off``,
``track``,
``album``,
``auto``
2018-08-28 18:08:22 +02:00
.
Changing the mode during playback may take several
2020-07-10 18:01:53 +02:00
seconds, because the new settings do not affect the
2018-08-28 18:08:22 +02:00
buffered data.
This command triggers the
``options`` idle event.
.. _command_replay_gain_status:
:command:`replay_gain_status`
2018-08-28 18:08:22 +02:00
Prints replay gain options. Currently, only the
variable ``replay_gain_mode`` is
returned.
.. _command_volume:
:command:`volume {CHANGE}`
2018-08-28 18:08:22 +02:00
Changes volume by amount ``CHANGE``.
Deprecated, use :ref:`setvol <command_setvol>` instead.
2018-08-28 18:08:22 +02:00
Controlling playback
====================
.. _command_next:
:command:`next`
2018-08-28 18:08:22 +02:00
Plays next song in the playlist.
.. _command_pause:
:command:`pause {STATE}`
Pause or resume playback. Pass :samp:`1` to pause playback or
:samp:`0` to resume playback. Without the parameter, the pause
state is toggled.
.. _command_play:
:command:`play [SONGPOS]`
2018-08-28 18:08:22 +02:00
Begins playing the playlist at song number
``SONGPOS``.
.. _command_playid:
:command:`playid [SONGID]`
2018-08-28 18:08:22 +02:00
Begins playing the playlist at song
``SONGID``.
.. _command_previous:
:command:`previous`
2018-08-28 18:08:22 +02:00
Plays previous song in the playlist.
.. _command_seek:
:command:`seek {SONGPOS} {TIME}`
2018-08-28 18:08:22 +02:00
Seeks to the position ``TIME`` (in
seconds; fractions allowed) of entry
``SONGPOS`` in the playlist.
.. _command_seekid:
:command:`seekid {SONGID} {TIME}`
2018-08-28 18:08:22 +02:00
Seeks to the position ``TIME`` (in
seconds; fractions allowed) of song
``SONGID``.
.. _command_seekcur:
:command:`seekcur {TIME}`
2018-08-28 18:08:22 +02:00
Seeks to the position ``TIME`` (in
seconds; fractions allowed) within the current song. If
prefixed by ``+`` or ``-``, then the time is relative to the
2018-08-28 18:08:22 +02:00
current playing position.
.. _command_stop:
:command:`stop`
2018-08-28 18:08:22 +02:00
Stops playing.
The Queue
=========
.. note:: The "queue" used to be called "current playlist" or just
"playlist", but that was deemed confusing, because
"playlists" are also files containing a sequence of songs.
Those "playlist files" or "stored playlists" can be
:ref:`loaded into the queue <command_load>` and the queue
can be :ref:`saved into a playlist file <command_save>`, but
they are not to be confused with the queue.
Many of the command names in this section reflect the old
naming convention, but for the sake of compatibility, we
cannot rename commands.
2018-08-28 18:08:22 +02:00
There are two ways to address songs within the queue: by their
position and by their id.
The position is a 0-based index. It is unstable by design: if you
move, delete or insert songs, all following indices will change, and a
client can never be sure what song is behind a given index/position.
Song ids on the other hand are stable: an id is assigned to a song
when it is added, and will stay the same, no matter how much it is
moved around. Adding the same song twice will assign different ids to
them, and a deleted-and-readded song will have a new id. This way, a
client can always be sure the correct song is being used.
Many commands come in two flavors, one for each address type.
Whenever possible, ids should be used.
.. _command_add:
:command:`add {URI} [POSITION]`
2018-08-28 18:08:22 +02:00
Adds the file ``URI`` to the playlist
(directories add recursively). ``URI``
can also be a single file.
The position parameter is the same as in :ref:`addid
<command_addid>`. [#since_0_23_3]_
Clients that are connected via local socket may add arbitrary
local files (URI is an absolute path). Example::
add "/home/foo/Music/bar.ogg"
.. _command_addid:
:command:`addid {URI} [POSITION]`
Adds a song to the playlist (non-recursive) and returns the
song id. ``URI`` is always a single file or URL. For example::
2018-08-28 18:08:22 +02:00
addid "foo.mp3"
Id: 999
OK
2018-08-28 18:08:22 +02:00
If the second parameter is given, then the song is inserted at the
specified position. If the parameter starts with ``+`` or ``-``,
then it is relative to the current song [#since_0_23]_; e.g. ``+0``
inserts right after the current song and ``-0`` inserts right
before the current song (i.e. zero songs between the current song
and the newly added song).
.. _command_clear:
:command:`clear`
Clears the queue.
2018-08-28 18:08:22 +02:00
.. _command_delete:
:command:`delete [{POS} | {START:END}]`
2018-08-28 18:08:22 +02:00
Deletes a song from the playlist.
.. _command_deleteid:
:command:`deleteid {SONGID}`
2018-08-28 18:08:22 +02:00
Deletes the song ``SONGID`` from the
playlist
.. _command_move:
2019-04-06 12:26:40 +02:00
:command:`move [{FROM} | {START:END}] {TO}`
2018-08-28 18:08:22 +02:00
Moves the song at ``FROM`` or range of songs
at ``START:END`` [#since_0_15]_ to ``TO``
2018-08-28 18:08:22 +02:00
in the playlist.
If ``TO`` starts with ``+`` or ``-``, then it is relative to the
current song; e.g. ``+0`` moves to right after the current song
and ``-0`` moves to right before the current song (i.e. zero songs
between the current song and the moved range).
.. _command_moveid:
:command:`moveid {FROM} {TO}`
2018-08-28 18:08:22 +02:00
Moves the song with ``FROM`` (songid) to
``TO`` (playlist index) in the
playlist.
If ``TO`` starts with ``+`` or ``-``, then it is relative to the
current song; e.g. ``+0`` moves to right after the current song
and ``-0`` moves to right before the current song (i.e. zero songs
between the current song and the moved song).
2018-08-28 18:08:22 +02:00
.. _command_playlist:
:command:`playlist`
Displays the queue.
2018-08-28 18:08:22 +02:00
Do not use this, instead use :ref:`playlistinfo
<command_playlistinfo>`.
.. _command_playlistfind:
2022-02-14 06:39:39 +01:00
:command:`playlistfind {FILTER} [sort {TYPE}] [window {START:END}]`
Search the queue for songs matching
``FILTER`` (see :ref:`Filters <filter_syntax>`).
2018-08-28 18:08:22 +02:00
2022-02-14 06:39:39 +01:00
``sort`` sorts the result by the specified tag. The sort is
descending if the tag is prefixed with a minus ('-'). Only the
first tag value will be used, if multiple of the same type exist.
To sort by "Artist", "Album" or "AlbumArtist", you should specify
"ArtistSort", "AlbumSort" or "AlbumArtistSort" instead. These
will automatically fall back to the former if "\*Sort" doesn't
exist. "AlbumArtist" falls back to just "Artist". The type
"Last-Modified" can sort by file modification time.
``window`` can be used to query only a portion of the real
response. The parameter is two zero-based queue positions; a
start index (including) and an end index (excluding). The end
index can be omitted, which means the range is open-ended.
.. _command_playlistid:
:command:`playlistid {SONGID}`
2018-08-28 18:08:22 +02:00
Displays a list of songs in the playlist.
``SONGID`` is optional and specifies a
single song to display info for.
.. _command_playlistinfo:
:command:`playlistinfo [[SONGPOS] | [START:END]]`
2018-08-28 18:08:22 +02:00
Displays a list of all songs in the playlist, or if the optional
argument is given, displays information only for the song
``SONGPOS`` or the range of songs
``START:END`` [#since_0_15]_
2018-08-28 18:08:22 +02:00
.. _command_playlistsearch:
2022-02-14 06:39:39 +01:00
:command:`playlistsearch {FILTER} [sort {TYPE}] [window {START:END}]`
Search the queue for songs matching
``FILTER`` (see :ref:`Filters <filter_syntax>`).
Parameters have the same meaning as for :ref:`find
<command_playlistfind>`, except that search is not case sensitive.
2018-08-28 18:08:22 +02:00
.. _command_plchanges:
:command:`plchanges {VERSION} [START:END]`
2018-08-28 18:08:22 +02:00
Displays changed songs currently in the playlist since
``VERSION``. Start and end positions may
be given to limit the output to changes in the given
range.
2018-08-28 18:08:22 +02:00
To detect songs that were deleted at the end of the
playlist, use playlistlength returned by status command.
.. _command_plchangesposid:
:command:`plchangesposid {VERSION} [START:END]`
2018-08-28 18:08:22 +02:00
Displays changed songs currently in the playlist since
``VERSION``. This function only
returns the position and the id of the changed song, not
the complete metadata. This is more bandwidth efficient.
2018-08-28 18:08:22 +02:00
To detect songs that were deleted at the end of the
playlist, use playlistlength returned by status command.
.. _command_prio:
:command:`prio {PRIORITY} {START:END...}`
2018-08-28 18:08:22 +02:00
Set the priority of the specified songs. A higher
priority means that it will be played first when
"random" mode is enabled.
2018-08-28 18:08:22 +02:00
A priority is an integer between 0 and 255. The default
priority of new songs is 0.
.. _command_prioid:
:command:`prioid {PRIORITY} {ID...}`
Same as :ref:`priod <command_prio>`,
2018-08-28 18:08:22 +02:00
but address the songs with their id.
.. _command_rangeid:
:command:`rangeid {ID} {START:END}` [#since_0_19]_
2018-11-12 13:01:43 +01:00
Since :program:`MPD`
2018-08-28 18:08:22 +02:00
0.19 Specifies the portion of the
song that shall be played. ``START`` and
``END`` are offsets in seconds
(fractional seconds allowed); both are optional.
Omitting both (i.e. sending just ":") means "remove the
range, play everything". A song that is currently
playing cannot be manipulated this way.
.. _command_shuffle:
:command:`shuffle [START:END]`
Shuffles the queue.
2018-08-28 18:08:22 +02:00
``START:END`` is optional and specifies
a range of songs.
.. _command_swap:
:command:`swap {SONG1} {SONG2}`
2018-08-28 18:08:22 +02:00
Swaps the positions of ``SONG1`` and
``SONG2``.
.. _command_swapid:
:command:`swapid {SONG1} {SONG2}`
2018-08-28 18:08:22 +02:00
Swaps the positions of ``SONG1`` and
``SONG2`` (both song ids).
.. _command_addtagid:
:command:`addtagid {SONGID} {TAG} {VALUE}`
2018-08-28 18:08:22 +02:00
Adds a tag to the specified song. Editing song tags is
only possible for remote songs. This change is
volatile: it may be overwritten by tags received from
the server, and the data is gone when the song gets
removed from the queue.
.. _command_cleartagid:
:command:`cleartagid {SONGID} [TAG]`
2018-08-28 18:08:22 +02:00
Removes tags from the specified song. If
``TAG`` is not specified, then all tag
values will be removed. Editing song tags is only
possible for remote songs.
Stored playlists
================
Playlists are stored inside the configured playlist directory.
They are addressed with their file name (without the directory
and without the `.m3u` suffix).
Some of the commands described in this section can be used to
run playlist plugins instead of the hard-coded simple
`m3u` parser. They can access playlists in
the music directory (relative path including the suffix),
playlists in arbitrary location (absolute path including the suffix;
allowed only for clients that are connected via local socket), or
2018-08-28 18:08:22 +02:00
remote playlists (absolute URI with a supported scheme).
.. _command_listplaylist:
:command:`listplaylist {NAME}`
2018-08-28 18:08:22 +02:00
Lists the songs in the playlist. Playlist plugins are
supported.
.. _command_listplaylistinfo:
:command:`listplaylistinfo {NAME}`
2018-08-28 18:08:22 +02:00
Lists the songs with metadata in the playlist. Playlist
plugins are supported.
.. _command_listplaylists:
:command:`listplaylists`
2018-08-28 18:08:22 +02:00
Prints a list of the playlist directory.
After each playlist name the server sends its last
modification time as attribute "Last-Modified" in ISO
8601 format. To avoid problems due to clock differences
between clients and the server, clients should not
compare this value with their local clock.
.. _command_load:
:command:`load {NAME} [START:END] [POSITION]`
2018-08-28 18:08:22 +02:00
Loads the playlist into the current queue. Playlist
plugins are supported. A range may be specified to load
only a part of the playlist.
The ``POSITION`` parameter specifies where the songs will be
inserted into the queue; it can be relative as described in
:ref:`addid <command_addid>`. (This requires specifying the range
as well; the special value `0:` can be used if the whole playlist
shall be loaded at a certain queue position.) [#since_0_23_1]_
.. _command_playlistadd:
:command:`playlistadd {NAME} {URI} [POSITION]`
2018-08-28 18:08:22 +02:00
Adds ``URI`` to the playlist
`NAME.m3u`.
`NAME.m3u` will be created if it does
not exist.
The ``POSITION`` parameter specifies where the songs will be
inserted into the playlist. [#since_0_23_3]_
.. _command_playlistclear:
:command:`playlistclear {NAME}`
2018-08-28 18:08:22 +02:00
Clears the playlist `NAME.m3u`.
.. _command_playlistdelete:
:command:`playlistdelete {NAME} {SONGPOS}`
2018-08-28 18:08:22 +02:00
Deletes ``SONGPOS`` from the
playlist `NAME.m3u`.
The second parameter can be a range. [#since_0_23_3]_
.. _command_playlistmove:
:command:`playlistmove {NAME} {FROM} {TO}`
2018-08-28 18:08:22 +02:00
Moves the song at position ``FROM`` in
the playlist `NAME.m3u` to the
position ``TO``.
.. _command_rename:
:command:`rename {NAME} {NEW_NAME}`
2018-08-28 18:08:22 +02:00
Renames the playlist `NAME.m3u` to `NEW_NAME.m3u`.
.. _command_rm:
:command:`rm {NAME}`
2018-08-28 18:08:22 +02:00
Removes the playlist `NAME.m3u` from
the playlist directory.
.. _command_save:
:command:`save {NAME}`
Saves the queue to
2018-08-28 18:08:22 +02:00
`NAME.m3u` in the playlist directory.
The music database
==================
.. _command_albumart:
:command:`albumart {URI} {OFFSET}`
Locate album art for the given song and return a chunk of an album
2018-08-28 18:08:22 +02:00
art image file at offset ``OFFSET``.
This is currently implemented by searching the directory the file
resides in for a file called :file:`cover.png`, :file:`cover.jpg`,
:file:`cover.tiff` or :file:`cover.bmp`.
2018-08-28 18:08:22 +02:00
Returns the file size and actual number
of bytes read at the requested offset, followed
by the chunk requested as raw bytes (see :ref:`binary`), then a
2018-08-28 18:08:22 +02:00
newline and the completion code.
Example::
albumart foo/bar.ogg 0
size: 1024768
binary: 8192
<8192 bytes>
OK
.. _command_count:
:command:`count {FILTER} [group {GROUPTYPE}]`
2018-08-28 18:08:22 +02:00
Count the number of songs and their total playtime in
the database matching ``FILTER`` (see
:ref:`Filters <filter_syntax>`). The
2018-08-28 18:08:22 +02:00
following prints the number of songs whose title matches
"Echoes"::
count title Echoes
2018-08-28 18:08:22 +02:00
The *group* keyword may be used to
group the results by a tag. The first following example
prints per-artist counts while the next prints the
number of songs whose title matches "Echoes" grouped by
artist::
count group artist
count title Echoes group artist
2018-08-28 18:08:22 +02:00
2020-07-10 18:01:53 +02:00
A group with an empty value contains counts of matching songs which
don't have this group tag. It exists only if at least one such song is
2018-10-22 18:19:04 +02:00
found.
.. _command_getfingerprint:
:command:`getfingerprint {URI}`
Calculate the song's audio fingerprint. Example (abbreviated fingerprint)::
getfingerprint "foo/bar.ogg"
chromaprint: AQACcEmSREmWJJmkIT_6CCf64...
OK
This command is only available if MPD was built with
:file:`libchromaprint` (``-Dchromaprint=enabled``).
.. _command_find:
:command:`find {FILTER} [sort {TYPE}] [window {START:END}]`
2018-08-28 18:08:22 +02:00
Search the database for songs matching
``FILTER`` (see :ref:`Filters <filter_syntax>`).
2018-08-28 18:08:22 +02:00
``sort`` sorts the result by the
specified tag. The sort is descending if the tag is
prefixed with a minus ('-').
Without ``sort``, the
order is undefined. Only the first tag value will be
used, if multiple of the same type exist. To sort by
"Artist", "Album" or "AlbumArtist", you should specify
"ArtistSort", "AlbumSort" or "AlbumArtistSort" instead.
These will automatically fall back to the former if
"\*Sort" doesn't exist. "AlbumArtist" falls back to just
"Artist". The type "Last-Modified" can sort by file
modification time.
2018-08-28 18:08:22 +02:00
``window`` can be used to query only a
portion of the real response. The parameter is two
zero-based record numbers; a start number and an end
number.
.. _command_findadd:
:command:`findadd {FILTER} [sort {TYPE}] [window {START:END}] [position POS]`
2018-08-28 18:08:22 +02:00
Search the database for songs matching
``FILTER`` (see :ref:`Filters <filter_syntax>`) and add them to
2018-08-28 18:08:22 +02:00
the queue. Parameters have the same meaning as for
:ref:`find <command_find>` and :ref:`searchadd <command_searchadd>`.
2018-08-28 18:08:22 +02:00
.. _command_list:
:command:`list {TYPE} {FILTER} [group {GROUPTYPE}]`
2018-08-28 18:08:22 +02:00
Lists unique tags values of the specified type.
``TYPE`` can be any tag supported by
:program:`MPD`.
Additional arguments may specify a :ref:`filter <filter_syntax>`.
2018-08-28 18:08:22 +02:00
The *group* keyword may be used
(repeatedly) to group the results by one or more tags.
2018-08-28 18:08:22 +02:00
The following example lists all album names,
grouped by their respective (album) artist::
list album group albumartist
``list file`` was implemented in an early :program:`MPD` version,
but does not appear to make a lot of sense. It still works (to
avoid breaking compatibility), but is deprecated.
.. _command_listall:
2018-08-28 18:08:22 +02:00
:command:`listall [URI]`
2018-08-28 18:08:22 +02:00
Lists all songs and directories in
``URI``.
2018-08-28 18:08:22 +02:00
Do not use this command. Do not manage a client-side
2018-11-12 13:01:43 +01:00
copy of :program:`MPD`'s database. That
2018-08-28 18:08:22 +02:00
is fragile and adds huge overhead. It will break with
large databases. Instead, query
2018-11-12 13:01:43 +01:00
:program:`MPD` whenever you need
2018-08-28 18:08:22 +02:00
something.
.. _command_listallinfo:
:command:`listallinfo [URI]`
Same as :ref:`listall <command_listall>`,
2018-08-28 18:08:22 +02:00
except it also returns metadata info in the same format
as :ref:`lsinfo <command_lsinfo>`
2018-08-28 18:08:22 +02:00
Do not use this command. Do not manage a client-side
2018-11-12 13:01:43 +01:00
copy of :program:`MPD`'s database. That
2018-08-28 18:08:22 +02:00
is fragile and adds huge overhead. It will break with
large databases. Instead, query
2018-11-12 13:01:43 +01:00
:program:`MPD` whenever you need
2018-08-28 18:08:22 +02:00
something.
.. _command_listfiles:
:command:`listfiles {URI}`
2018-08-28 18:08:22 +02:00
Lists the contents of the directory
``URI``, including files are not
2018-11-12 13:01:43 +01:00
recognized by :program:`MPD`.
2018-08-28 18:08:22 +02:00
``URI`` can be a path relative to the
music directory or an URI understood by one of the
storage plugins. The response contains at least one
line for each directory entry with the prefix "file: "
or "directory: ", and may be followed by file attributes
such as "Last-Modified" and "size".
2018-08-28 18:08:22 +02:00
For example, "smb://SERVER" returns a list of all shares
on the given SMB/CIFS server; "nfs://servername/path"
obtains a directory listing from the NFS server.
.. _command_lsinfo:
:command:`lsinfo [URI]`
2018-08-28 18:08:22 +02:00
Lists the contents of the directory
``URI``. The response contains records
starting with ``file``,
``directory`` or
``playlist``, each followed by metadata
(:ref:`tags <tags>` or :ref:`other metadata <other_metadata>`).
2018-08-28 18:08:22 +02:00
When listing the root directory, this currently returns
the list of stored playlists. This behavior is
deprecated; use "listplaylists" instead.
2018-08-28 18:08:22 +02:00
This command may be used to list metadata of remote
files (e.g. URI beginning with "http://" or "smb://").
Clients that are connected via local socket may
2018-08-28 18:08:22 +02:00
use this command to read the tags of an arbitrary local
file (URI is an absolute path).
.. _command_readcomments:
:command:`readcomments {URI}`
2018-08-28 18:08:22 +02:00
Read "comments" (i.e. key-value pairs) from the file
specified by "URI". This "URI" can be a path relative
to the music directory or an absolute path.
2018-08-28 18:08:22 +02:00
This command may be used to list metadata of remote
files (e.g. URI beginning with "http://" or "smb://").
2018-08-28 18:08:22 +02:00
The response consists of lines in the form "KEY: VALUE".
Comments with suspicious characters (e.g. newlines) are
ignored silently.
2018-08-28 18:08:22 +02:00
The meaning of these depends on the codec, and not all
decoder plugins support it. For example, on Ogg files,
this lists the Vorbis comments.
.. _command_readpicture:
:command:`readpicture {URI} {OFFSET}`
Locate a picture for the given song and return a chunk of the
image file at offset ``OFFSET``. This is usually implemented by
reading embedded pictures from binary tags (e.g. ID3v2's ``APIC``
tag).
Returns the following values:
- ``size``: the total file size
- ``type``: the file's MIME type (optional)
- ``binary``: see :ref:`binary`
If the song file was recognized, but there is no picture, the
response is successful, but is otherwise empty.
Example::
readpicture foo/bar.ogg 0
size: 1024768
type: image/jpeg
binary: 8192
<8192 bytes>
OK
.. _command_search:
2021-10-27 01:11:39 +02:00
:command:`search {FILTER} [sort {TYPE}] [window {START:END}]`
2018-08-28 18:08:22 +02:00
Search the database for songs matching
``FILTER`` (see :ref:`Filters <filter_syntax>`). Parameters
have the same meaning as for :ref:`find <command_find>`,
2018-08-28 18:08:22 +02:00
except that search is not case sensitive.
.. _command_searchadd:
:command:`searchadd {FILTER} [sort {TYPE}] [window {START:END}] [position POS]`
2018-08-28 18:08:22 +02:00
Search the database for songs matching
``FILTER`` (see :ref:`Filters <filter_syntax>`) and add them to
2018-08-28 18:08:22 +02:00
the queue.
Parameters have the same meaning as for :ref:`search <command_search>`.
The ``position`` parameter specifies where the songs will be
inserted. [#since_0_23]_
It can be relative to the current song as in :ref:`addid
<command_addid>`. [#since_0_23_5]_
.. _command_searchaddpl:
:command:`searchaddpl {NAME} {FILTER} [sort {TYPE}] [window {START:END}] [position POS]`
2018-08-28 18:08:22 +02:00
Search the database for songs matching
``FILTER`` (see :ref:`Filters <filter_syntax>`) and add them to
2018-08-28 18:08:22 +02:00
the playlist named ``NAME``.
2018-08-28 18:08:22 +02:00
If a playlist by that name doesn't exist it is created.
Parameters have the same meaning as for :ref:`search <command_search>`.
The ``position`` parameter specifies where the songs will be
inserted. [#since_0_23_4]_
.. _command_update:
:command:`update [URI]`
2018-08-28 18:08:22 +02:00
Updates the music database: find new files, remove
deleted files, update modified files.
2018-08-28 18:08:22 +02:00
``URI`` is a particular directory or
song/file to update. If you do not specify it,
everything is updated.
Prints ``updating_db: JOBID`` where
2018-08-28 18:08:22 +02:00
``JOBID`` is a positive number
identifying the update job. You can read the current
job id in the :ref:`status <command_status>`
2018-08-28 18:08:22 +02:00
response.
.. _command_rescan:
:command:`rescan [URI]`
Same as :ref:`update <command_update>`,
2018-08-28 18:08:22 +02:00
but also rescans unmodified files.
Mounts and neighbors
====================
A "storage" provides access to files in a directory tree. The
most basic storage plugin is the "local" storage plugin which
accesses the local file system, and there are plugins to
access NFS and SMB servers.
Multiple storages can be "mounted" together, similar to the
`mount` command on many operating
systems, but without cooperation from the kernel. No
2020-04-23 23:36:46 +02:00
superuser privileges are necessary, because this mapping exists
only inside the :program:`MPD` process.
2018-08-28 18:08:22 +02:00
.. _command_mount:
:command:`mount {PATH} {URI}`
2018-08-28 18:08:22 +02:00
Mount the specified remote storage URI at the given
path. Example::
mount foo nfs://192.168.1.4/export/mp3
.. _command_unmount:
:command:`unmount {PATH}`
Unmounts the specified path. Example::
2018-08-28 18:08:22 +02:00
unmount foo
2018-08-28 18:08:22 +02:00
.. _command_listmounts:
:command:`listmounts`
2018-08-28 18:08:22 +02:00
Queries a list of all mounts. By default, this contains
just the configured ``music_directory``.
Example::
listmounts
mount:
storage: /home/foo/music
mount: foo
storage: nfs://192.168.1.4/export/mp3
OK
.. _command_listneighbors:
:command:`listneighbors`
2018-08-28 18:08:22 +02:00
Queries a list of "neighbors" (e.g. accessible file
servers on the local net). Items on that list may be
used with the :ref:`mount <command_mount>`
command. Example::
listneighbors
neighbor: smb://FOO
name: FOO (Samba 4.1.11-Debian)
OK
2018-08-28 18:08:22 +02:00
Stickers
========
"Stickers" [#since_0_15]_ are pieces of
2018-08-28 18:08:22 +02:00
information attached to existing
2018-11-12 13:01:43 +01:00
:program:`MPD` objects (e.g. song files,
directories, albums; but currently, they are only implemented for
song). Clients can create arbitrary name/value
2018-11-12 13:01:43 +01:00
pairs. :program:`MPD` itself does not assume
2018-08-28 18:08:22 +02:00
any special meaning in them.
The goal is to allow clients to share additional (possibly
dynamic) information about songs, which is neither stored on
the client (not available to other clients), nor stored in the
2018-11-12 13:01:43 +01:00
song files (:program:`MPD` has no write
2018-08-28 18:08:22 +02:00
access).
Client developers should create a standard for common sticker
names, to ensure interoperability.
Objects which may have stickers are addressed by their object
type ("song" for song objects) and their URI (the path within
the database for songs).
.. _command_sticker_get:
:command:`sticker get {TYPE} {URI} {NAME}`
2018-08-28 18:08:22 +02:00
Reads a sticker value for the specified object.
.. _command_sticker_set:
:command:`sticker set {TYPE} {URI} {NAME} {VALUE}`
2018-08-28 18:08:22 +02:00
Adds a sticker value to the specified object. If a
sticker item with that name already exists, it is
replaced.
.. _command_sticker_delete:
:command:`sticker delete {TYPE} {URI} [NAME]`
2018-08-28 18:08:22 +02:00
Deletes a sticker value from the specified object. If
you do not specify a sticker name, all sticker values
are deleted.
.. _command_sticker_list:
:command:`sticker list {TYPE} {URI}`
2018-08-28 18:08:22 +02:00
Lists the stickers for the specified object.
.. _command_sticker_find:
:command:`sticker find {TYPE} {URI} {NAME}`
2018-08-28 18:08:22 +02:00
Searches the sticker database for stickers with the
specified name, below the specified directory (URI).
For each matching song, it prints the URI and that one
sticker's value.
.. _command_sticker_find_value:
:command:`sticker find {TYPE} {URI} {NAME} = {VALUE}`
2018-08-28 18:08:22 +02:00
Searches for stickers with the given value.
2018-08-28 18:08:22 +02:00
Other supported operators are:
"``<``", "``>``"
Connection settings
===================
.. _command_close:
:command:`close`
2018-11-12 13:01:43 +01:00
Closes the connection to :program:`MPD`.
:program:`MPD` will try to send the
2018-08-28 18:08:22 +02:00
remaining output buffer before it actually closes the
connection, but that cannot be guaranteed. This command
will not generate a response.
Clients should not use this command; instead, they should just
close the socket.
.. _command_kill:
:command:`kill`
2018-11-12 13:01:43 +01:00
Kills :program:`MPD`.
2018-08-28 18:08:22 +02:00
Do not use this command. Send ``SIGTERM`` to :program:`MPD`
instead, or better: let your service manager handle :program:`MPD`
shutdown (e.g. :command:`systemctl stop mpd`).
.. _command_password:
:command:`password {PASSWORD}`
2018-08-28 18:08:22 +02:00
This is used for authentication with the server.
``PASSWORD`` is simply the plaintext
password.
.. _command_ping:
:command:`ping`
2018-08-28 18:08:22 +02:00
Does nothing but return "OK".
.. _command_binarylimit:
:command:`binarylimit SIZE` [#since_0_22_4]_
Set the maximum :ref:`binary response <binary>` size for the
current connection to the specified number of bytes.
A bigger value means less overhead for transmitting large
entities, but it also means that the connection is blocked for a
longer time.
.. _command_tagtypes:
:command:`tagtypes`
2018-08-28 18:08:22 +02:00
Shows a list of available tag types. It is an
intersection of the ``metadata_to_use``
setting and this client's tag mask.
2018-08-28 18:08:22 +02:00
About the tag mask: each client can decide to disable
any number of tag types, which will be omitted from
responses to this client. That is a good idea, because
it makes responses smaller. The following
``tagtypes`` sub commands configure this
list.
.. _command_tagtypes_disable:
:command:`tagtypes disable {NAME...}`
2018-08-28 18:08:22 +02:00
Remove one or more tags from the list of tag types the
client is interested in. These will be omitted from
responses to this client.
.. _command_tagtypes_enable:
:command:`tagtypes enable {NAME...}`
2018-08-28 18:08:22 +02:00
Re-enable one or more tags from the list of tag types
for this client. These will no longer be hidden from
responses to this client.
.. _command_tagtypes_clear:
:command:`tagtypes clear`
2018-08-28 18:08:22 +02:00
Clear the list of tag types this client is interested
2018-11-12 13:01:43 +01:00
in. This means that :program:`MPD` will
2018-08-28 18:08:22 +02:00
not send any tags to this client.
.. _command_tagtypes_all:
:command:`tagtypes all`
2018-08-28 18:08:22 +02:00
Announce that this client is interested in all tag
types. This is the default setting for new clients.
.. _partition_commands:
2018-08-28 18:08:22 +02:00
Partition commands
==================
These commands allow a client to inspect and manage
"partitions". A partition is one frontend of a multi-player
MPD process: it has separate queue, player and outputs. A
client is assigned to one partition at a time.
.. _command_partition:
:command:`partition {NAME}`
2018-08-28 18:08:22 +02:00
Switch the client to a different partition.
.. _command_listpartitions:
:command:`listpartitions`
2018-08-28 18:08:22 +02:00
Print a list of partitions. Each partition starts with
a ``partition`` keyword and the
partition's name, followed by information about the
partition.
.. _command_newpartition:
:command:`newpartition {NAME}`
2018-08-28 18:08:22 +02:00
Create a new partition.
.. _command_delpartition:
:command:`delpartition {NAME}`
Delete a partition. The partition must be empty (no connected
clients and no outputs).
.. _command_moveoutput:
2019-09-26 13:02:34 +02:00
:command:`moveoutput {OUTPUTNAME}`
Move an output to the current partition.
2018-08-28 18:08:22 +02:00
Audio output devices
====================
.. _command_disableoutput:
:command:`disableoutput {ID}`
2018-08-28 18:08:22 +02:00
Turns an output off.
.. _command_enableoutput:
:command:`enableoutput {ID}`
2018-08-28 18:08:22 +02:00
Turns an output on.
.. _command_toggleoutput:
:command:`toggleoutput {ID}`
2018-08-28 18:08:22 +02:00
Turns an output on or off, depending on the current
state.
.. _command_outputs:
:command:`outputs`
2018-08-28 18:08:22 +02:00
Shows information about all outputs.
2018-08-28 18:08:22 +02:00
::
outputid: 0
outputname: My ALSA Device
plugin: alsa
outputenabled: 0
attribute: dop=0
OK
Return information:
2018-08-28 18:08:22 +02:00
- ``outputid``: ID of the output. May change between executions
- ``outputname``: Name of the output. It can be any.
- ``outputenabled``: Status of the output. 0 if disabled, 1 if enabled.
.. _command_outputset:
:command:`outputset {ID} {NAME} {VALUE}`
2018-08-28 18:08:22 +02:00
Set a runtime attribute. These are specific to the
output plugin, and supported values are usually printed
in the :ref:`outputs <command_outputs>`
2018-08-28 18:08:22 +02:00
response.
Reflection
==========
.. _command_config:
:command:`config`
2018-08-28 18:08:22 +02:00
Dumps configuration values that may be interesting for
the client. This command is only permitted to "local"
clients (connected via local socket).
2018-08-28 18:08:22 +02:00
The following response attributes are available:
- ``music_directory``: The absolute path of the music directory.
.. _command_commands:
:command:`commands`
2018-08-28 18:08:22 +02:00
Shows which commands the current user has access to.
.. _command_notcommands:
:command:`notcommands`
2018-08-28 18:08:22 +02:00
Shows which commands the current user does not have
access to.
.. _command_urlhandlers:
:command:`urlhandlers`
2018-08-28 18:08:22 +02:00
Gets a list of available URL handlers.
.. _command_decoders:
:command:`decoders`
2018-08-28 18:08:22 +02:00
Print a list of decoder plugins, followed by their
supported suffixes and MIME types. Example response::
plugin: mad
suffix: mp3
suffix: mp2
mime_type: audio/mpeg
plugin: mpcdec
suffix: mpc
2018-08-28 18:08:22 +02:00
Client to client
================
Clients can communicate with each others over "channels". A
channel is created by a client subscribing to it. More than
one client can be subscribed to a channel at a time; all of
them will receive the messages which get sent to it.
Each time a client subscribes or unsubscribes, the global idle
event ``subscription`` is generated. In
conjunction with the :ref:`channels <command_channels>`
2018-08-28 18:08:22 +02:00
command, this may be used to auto-detect clients providing
additional services.
New messages are indicated by the ``message``
idle event.
If your MPD instance has multiple partitions, note that
client-to-client messages are local to the current partition.
.. _command_subscribe:
:command:`subscribe {NAME}`
2018-08-28 18:08:22 +02:00
Subscribe to a channel. The channel is created if it
does not exist already. The name may consist of
alphanumeric ASCII characters plus underscore, dash, dot
and colon.
.. _command_unsubscribe:
:command:`unsubscribe {NAME}`
2018-08-28 18:08:22 +02:00
Unsubscribe from a channel.
.. _command_channels:
:command:`channels`
2018-08-28 18:08:22 +02:00
Obtain a list of all channels. The response is a list
of "channel:" lines.
.. _command_readmessages:
:command:`readmessages`
2018-08-28 18:08:22 +02:00
Reads messages for this client. The response is a list
of "channel:" and "message:" lines.
.. _command_sendmessage:
:command:`sendmessage {CHANNEL} {TEXT}`
2018-08-28 18:08:22 +02:00
Send a message to the specified channel.
.. rubric:: Footnotes
2018-08-28 18:08:22 +02:00
.. [#since_0_14] Since :program:`MPD` 0.14
.. [#since_0_15] Since :program:`MPD` 0.15
.. [#since_0_16] Since :program:`MPD` 0.16
.. [#since_0_19] Since :program:`MPD` 0.19
.. [#since_0_20] Since :program:`MPD` 0.20
.. [#since_0_21] Since :program:`MPD` 0.21
.. [#since_0_22_4] Since :program:`MPD` 0.22.4
.. [#since_0_23] Since :program:`MPD` 0.23
.. [#since_0_23_1] Since :program:`MPD` 0.23.1
.. [#since_0_23_3] Since :program:`MPD` 0.23.3
.. [#since_0_23_4] Since :program:`MPD` 0.23.4
.. [#since_0_23_5] Since :program:`MPD` 0.23.5