ncmpcpp
Ncmpcpp is an mpd client (compatible with mopidy) with a UI very similar to ncmpc, but it provides new useful features such as support for regular expressions for library searches, extended song format, items filtering, the ability to sort playlists, and a local filesystem browser.
To use it, a functional mpd must be present on the system since ncmpcpp/mpd work together in a client/server relationship.
Installation
Basic configuration
The shell "GUI" for ncmpcpp is highly customizable. Edit $XDG_CONFIG_HOME/ncmpcpp/config
to your liking. If, after installation, $XDG_CONFIG_HOME/ncmpcpp/config
has not been created, simply copy the sample config, change owner and edit at the very least the following three configuration options:
- mpd_host - Should point to the host on which mpd resides, can be "localhost", "127.0.0.1" or "::1" if on the same machine. To connect with a password, write "password@host"
- mpd_port - The default of mpd should be "6600"
-
mpd_music_dir - The same directory value as specified in "music_directory" in
mpd.conf
For inspiration, see the following resources:
- Sample configuration file in
/usr/share/doc/ncmpcpp/config
. - Show your .ncmpcpp/config with screenshot forum thread
Enabling visualization
For visualization, add a few lines to /etc/mpd.conf
or ~/.config/mpd/mpd.conf
to enable the generation of the fast Fourier transform data for the visualization:
audio_output { type "fifo" name "my_fifo" path "/tmp/mpd.fifo" format "44100:16:2" }
audio_output
section for the normal audio output. See Music Player Daemon#Audio configuration for details.Additional lines need to be added to $XDG_CONFIG_HOME/ncmpcpp/config
visualizer_data_source = "/tmp/mpd.fifo" visualizer_output_name = "my_fifo" visualizer_in_stereo = "yes" visualizer_type = "spectrum" visualizer_look = "+|"
-
visualizer_type - Set the visualization to either a
spectrum
/ellipse
/wave_filled
analyzer orwave
form. - visualizer_look - Set the visualizer's look (string has to be exactly 2 characters long: first one is for wave and whereas second for frequency spectrum, wave_filled and ellipse).
buffer_time
in your mpd
configuration to 100000 or less.If you use mopidy, visualization is handled via gstreamer's udpsink. Edit the output
in the [audio]
block of your mopidy.conf
:
output = tee name=t ! queue ! autoaudiosink t. ! queue ! audio/x-raw,rate=44100,channels=2,format=S16LE ! udpsink host=localhost port=5555
This forwards the audio data to port 5555
. For ncmpcpp
to read from this port, change its visualizer_data_source
accordingly:
visualizer_data_source = "localhost:5555"
Tips and tricks
Remapping keys
A listing of key bindings and their respective functions is available from within npmpcpp itself via hitting F1
. Users may remap any of the default keys simply by copying /usr/share/doc/ncmpcpp/bindings
to $XDG_CONFIG_HOME/ncmpcpp/
and editing it.
Autoset Tags from Filename and vice versa
In the Tag Editor you can select a directory with music and then select the Filename
option in the middle section. This opens a little window with two options: Get Tags from Filename
and Rename files
.
If you choose Get Tags From Filename
, a popup with two windows is shown. On the left side you can enter a pattern that extracts the selected information from the filenames. You can also hit Preview
to see what the result would look like. On the right side you can see the legend containing all the possible keywords to be used for extraction.
A simple Example would be the pattern: %a - %t
. If your files are named according to this pattern (Artist - Title) then this pattern would extract this information and set the Tags for the File.
The other option Rename Files
does the exact opposite. It takes the Tags from the audio files and creates a Filename from them.
Notification on song change
The execute_on_song_change
command can be coupled with notify-send to generate notifications whenever the song changes (and upon application launch). This is contingent upon having a notification server installed and configured. Edit $XDG_CONFIG_HOME/ncmpcpp/config
, for example:
execute_on_song_change = notify-send "Now Playing" "$(mpc --format '%title% \n%artist% - %album%' current)"
With album art
If you want song change notifications to have the album art of the currently playing song, you can use this script. Album art previews will be stored in $XDG_CONFIG_HOME/ncmpcpp/previews
by default, scaled to 128x128. Preview filenames are the album names encoded in base64, so no duplicate previews should be saved.
Assuming ~/.local/bin
is in your $PATH
, create (and make executable):
~/.local/bin/songinfo
#!/bin/sh music_dir="$HOME/Music" previewdir="$XDG_CONFIG_HOME/ncmpcpp/previews" filename="$(mpc --format "$music_dir"/%file% current)" previewname="$previewdir/$(mpc --format %album% current | base64).png" [ -e "$previewname" ] || ffmpeg -y -i "$filename" -an -vf scale=128:128 "$previewname" > /dev/null 2>&1 notify-send -r 27072 "Now Playing" "$(mpc --format '%title% \n%artist% - %album%' current)" -i "$previewname"
and add this to your ncmpcpp config:
execute_on_song_change = songinfo