I am using Music Player Daemon (mpd) with ncmpcpp on OS X. ncmpcpp has a feature, the music visualizer, that draws a realtime wave/spectrum of the music you are currently playing.
In order to use this you have to enable the fifo output in mpd.
Well, it works but while this is on the audio is terrible: It crackles and sometimes even freezes. It’s like if mpd is skipping some frame.
The mpd settings for the fifo are:
audio_output {
type "fifo"
name "FIFO"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
And ncmpcpp has set:
visualizer_in_stereo = "yes"
visualizer_fifo_path = "/tmp/mpd.fifo"
visualizer_output_name = "fifo"
visualizer_sync_interval = "0"
visualizer_look = "||"
visualizer_color = "blue"
visualizer_type = "spectrum"
Is there some wrong setting to change or I have found a bug?