I've set up MPD, and it's definitely running and indexing everything correctly. I followed the instructions here to set up EMMS to work with MPD, and after running M-x emms-cache-set-from-mpd-all
, it indexed the right number of tracks, and connecting via emms-player-connect
seems to work without error. However, when I call M-x emms
, all I see is an empty window. What am I missing?
For reference, this is my config:
;;Media
(require 'emms-player-mpd)
(require 'emms-setup)
(emms-standard)
(emms-default-players)
(setq emms-player-mpd-server-name "localhost")
(setq emms-player-mpd-server-port "6600")
(add-to-list 'emms-player-list 'emms-player-mpd)
(add-to-list 'emms-info-functions 'emms-info-mpd)