Music Player Daemon

MPD (music player daemon) is an audio player that has a server-client architecture. It plays audio files, organizes playlists and maintains a music database, all while using very few resources. In order to interface with it, a separate client is needed.

Installation

Install the mpd package, or mpd-gitAUR for the development version.

Configuration

MPD is able to run in #Per-user configuration or #System-wide configuration mode (settings apply to all users). Also it is possible to run multiple instances of MPD in a #Multi-MPD setup. The way of setting up MPD depends on the way it is intended to be used: a local per-user configuration is easier to set up and may prove more adapted on a desktop system. The system-wide setup might be better suited for a always-on audio server with multiple users but a shared MPD instance.

In order for MPD to be able to playback audio, ALSA, optionally with PulseAudio or PipeWire, must be set up and working. The #Audio configuration section thereafter describes the parameters needed for ALSA, PulseAudio or PipeWire.

MPD is configured in the file mpd.conf(5) which can be located in various paths depending on the setup chosen (system-wide or per-user). In short, the two common locations used are:

  1. ~/.config/mpd/mpd.conf in per-user configuration mode, this is the first location searched,
  2. /etc/mpd.conf in system-wide configuration.

These are some of the most commonly used configuration options:

  • pid_file - The file where MPD stores its process ID
  • db_file - The music database
  • state_file - MPD's current state is noted here
  • - The directory where playlists are saved into
  • - The directory that MPD scans for music
  • - The sticker database

Per-user configuration

MPD can be configured per-user. Running it as a normal user has the benefits of:

  • Regrouping into one single directory ~/.config/mpd/ (or any other directory under ) all the MPD configuration files.
  • Avoiding unforeseen directory and file permission errors.

Configure the location of files and directories

In user mode, the configuration is read from . We will assume here equals the default of .

To build the user configuration, the MPD configuration example included in the package is a good starting point, copy it using the following lines:

$ mkdir ~/.config/mpd
$ cp /usr/share/doc/mpd/mpdconf.example ~/.config/mpd/mpd.conf

A good practice is to use this newly created ~/.config/mpd/ directory to store, together with the configuration file, other MPD related files like the database or the playlists. The user must have read write access to this directory.

Then edit the configuration file in order to specify the required and optional files and directories:

~/.config/mpd/mpd.conf
# Recommended location for database
db_file            "~/.config/mpd/database"

# If running mpd using systemd, delete this line to log directly to systemd.
log_file           "syslog"

# The music directory is by default the XDG directory, uncomment to amend and choose a different directory
#music_directory    "~/music"

# Uncomment to refresh the database whenever files in the music_directory are changed
#auto_update "yes"

# Uncomment to enable the functionalities
#playlist_directory "~/.config/mpd/playlists"
#pid_file           "~/.config/mpd/pid"
#state_file         "~/.config/mpd/state"
#sticker_file       "~/.config/mpd/sticker.sql"

If playlists are enabled in the configuration, the specified playlist directory must be created:

$ mkdir ~/.config/mpd/playlists

MPD can now be started (an optional custom location for the configuration file can be specified):

$ mpd [config_file]

In order to build the database file, MPD must scan into the defined above. To request this task, one of the MPD clients must be used. For example with mpc the command is:

$ mpc update

or alternatively one can set the option to in the configuration to refresh the database whenever files are changed in .

Audio configuration

If ALSA is used, autodetection of the default device should work out of the box without any particular setting. If not, the syntax for ALSA audio output definition is provided thereafter; the required parameter specifies a unique name for the audio output. The exact device as displayed using from the package alsa-utils can optionally be indicated with the option.

Users of PulseAudio will need to make the following modification:

Output with PipeWire can also be configured:

Autostart with systemd

The mpd package provides a user service file. The service starts the process as user, there is no need to change permission nor use the user and variables in the MPD configuration file.

Start/enable the user unit (i.e. with the flag).

Autostart on tty login

To start MPD on login add the following to ~/.profile or another autostart file:

# MPD daemon start (if no other user instance exists)
[ ! -s ~/.config/mpd/pid ] && mpd

Scripted configuration

The mpd-configure tool creates a MPD configuration optimized for bit perfect audio playback, without any resampling or conversion, using the ALSA interface hardware address (hw:x,y).

System-wide configuration

The default /etc/mpd.conf keeps the setup in which is assigned to user as well as primary group MPD.

Music directory

The music directory is defined by the option in the configuration file /etc/mpd.conf.

MPD needs to have execute permission on all parent directories of the music collection and also read access to all directories containing music files. This may conflict with the default configuration of the user directory, like , where the music is stored.

While there are several solutions to this issue, one of these should be most practical:

  • Switch to the #Per-user configuration mode instead
  • Add the user to the user's group and grant group execute permission to the user directory. This way the user has permission to open the user directory:
# gpasswd -a mpd user_group
$ chmod 710 /home/user_directory
  • Store the music collection in a different path, either:
    • by moving it entirely,
    • with a bind mount,
    • or with Btrfs#Subvolumes (you should make this change persistent with an entry to ).

The MPD configuration file must define only one music directory. If the music collection is contained under multiple directories, create symbolic links under the main music directory in . Remember to set permissions accordingly on the directories being linked.

To exclude a file - or files - from the update, create a file called .mpdignore in its parent directory. Each line of that file may contain a list of shell wildcards. Matching files in the current directory and all subdirectories are then excluded from subsequent updates.

Start with systemd

MPD can be controlled with using systemd. The first startup can take some time as MPD will scan your music directory.

Test everything by starting a client application ( is a light and easy to use client), and play some music!

Socket activation

mpd provides a unit. If is enabled (and is disabled), systemd will not start MPD immediately, it will just listen to the appropriate sockets. Then, whenever an MPD client attempts to connect to one of these sockets, systemd will start and transparently hand over control of these ports to the MPD process.

If you prefer to listen to different UNIX sockets or network ports (even multiple sockets of each type), or if you prefer not to listen to network ports at all, edit the unit appropriately and modify to match the configuration (see mpd.conf(5) for details).

User id startup workflow

MPD should never run as root; you may use the user option in the configuration to make MPD change its user id after initialization. Do not use this option if you start MPD as an unprivileged user. To describe how MPD drops its superuser privileges and switch to those of the user set in the configuration, the steps of a normal MPD startup are listed thereafter:

  1. Since MPD is started as root by systemd, it first reads the /etc/mpd.conf file.
  2. MPD reads the user variable in the configuration, and changes from root to this user.
  3. MPD then reads the rest of the configuration file and configures itself accordingly. Uses of in the configuration file points to the home user's directory, and not root's directory.

Running an Icecast server

For a second MPD (e.g. with Icecast output to share music over the network) using the same music and playlist as the one above, simply copy the above configuration file and make a new file (e.g., /home/username/.mpd/config-icecast), and only change the , , pid_file, and state_file parameters (e.g. , , and so on). Using the same directory paths for the music and playlist directories would ensure that this second MPD uses the same music collection as the first one, e.g. creating and editing a playlist under the first daemon would affect the second daemon as well. Users do not have to create the same playlists all over again for the second daemon. Call this second daemon the same way from ~/.xinitrc above - but be sure to have a different port number, avoiding a conflict with the first MPD daemon.

Satellite setup

The method described in #Running an Icecast server works, but at least in theory could lead to issues with the database, when both MPD instances try to write to the same database file concurrently. MPD has a satellite mode where one instance can receive the database from an already running MPD instance.

In your add this, where host and port reflect your primary MPD server:

Clients

A separate client is needed to control MPD. See a long list of clients at the mpd website. Popular options are:

Command-line

    Console

    • ncmpc Ncurses client for MPD written in C++.
    https://www.musicpd.org/clients/ncmpc/ || ncmpc
    • vimpc Ncurses based MPD client with vi-like key bindings.
    https://github.com/boysetsfrog/vimpc || vimpc-gitAUR

      Graphical

      • GMPC Gnome Music Player Client. GTK frontend for MPD. It is designed to be lightweight and easy to use, while providing full access to all of MPD's features. Users are presented with several different methods to browse through their music. It can be extended by plugins, of which many are available.
      https://github.com/DaveDavenport/gmpc || gmpcAUR
      • SkyMPC Simple MPD client, powered by Qt5.
      https://github.com/soramimi/SkyMPC || skympc-gitAUR
      gollark: AES-256.
      gollark: Anyway, quick rundown of OmniDisk execution: first, an OmniDisk's digital signature is checked against the stored public key. I can't invalidate signatures remotely, so any disk I've ever issued will still *run* under the privileged potatOS environment.
      gollark: They'll run the potatOS installer if you boot into them on a non-potatocomputer.
      gollark: In some sense?
      gollark: Well, sure?

      See also

      This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.