-
Hello! As far as I know, MPD does not provide this kind of information as to its current state, and despite having set up multiple MPD sources running, I can only monitor 1 using MPC, which apparently does not take any MPD instance as argument. Would anyone know if :
Sorry for my noobness and thanks a bunch for this wonderful project :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
To interrogate different MPD instances, use the e.g. Using To further investigate why MPD stops playing, you will need to 1) make sure you are running the latest version (0.23.5) and 2) produce a verbose log (either via the |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for your reply! I missed the --port option, that would indeed perfectly suit my need. Thank you very much one more! |
Beta Was this translation helpful? Give feedback.
To interrogate different MPD instances, use the
--port
and/or--host
options ofmpc
.e.g.
mpc --port 6600
will report on the instance of MPD listening on port 6600 (the default)mpc --host myPi --port 6601
will report on the instance of MPD listening on port 6601 on the hostmyPi
Using
mpc status
you can determine if MPD is playing or not.To further investigate why MPD stops playing, you will need to 1) make sure you are running the latest version (0.23.5) and 2) produce a verbose log (either via the
mpd.conf
file or the command line when you start MPD) to see what MPD complains about.