MPD - Music Player Daemon

From MPDs site: Music Player Daemon (MPD) is a flexible, powerful, server-side application for playing music. Through plugins and libraries it can play a variety of sound files while being controlled by its network protocol. And it does what it says, perfectly. It’s fast, it’s simple to setup and use. In comparison to LMS it’s limited in features (e.g. can’t serve files to clients) but makes up with speed and straightforwardness.

This will be more a point out to a LMS alternative for setups that doesn’t really need all LMS features, plugins and ability to serve music over network to other clients than a guide. If what you really need is to control what raspis playing then MPD is the way to go. It’s just a music player that you control over network.

Install and setup is as simple as it gets to install any software on linux:

sudo apt-get update sudo apt-get upgrade

And then:

sudo apt-get install mpd sudo service mpd stop

After successful install we need to change a few lines to suit our purposes:

sudo nano /etc/mpd.conf

Directiory with your music:

music_directory "/media/wd/muzyka"

Directory with your playlists:

playlist_directory "/media/wd/muzyka/playlists"

Output, as usual I recommend you to get yourself a decent usb audio card. Below my configuration with Fiio e10, but it should work with just any usb card.

audio_output {

type "alsa"

name "Fiio e10 alsa"

# device "hw:0,0" # optional format "44100:24:2" # optional

# mixer_device "default" # optional mixer_control "PCM" # optional mixer_index "0" # optional

# mixer_type "software" # optional

# replay_gain_handler "none" # optional

and now, start mpd:

sudo service mpd start

Choose one of many MPD clients, sit back and enjoy your music collection :)

My clients types are:

Windows – Auremo, GMPC

Android – MPDroid

Linux – MPC ( sudo apt-get install mpc )

Continue reading here: Torrent Client Transmission

Was this article helpful?

0 0