04-03-2020, 08:52 PM
@Coustard
That worker task upmpddb essentially duplicates the "mpc update" command by an alternative method which would work for you on your mac if you don't want to try building mpc from source.
The alternative method is to use the MPD protocol via telnet. Here's an example on my Linux laptop:
MPD is listening on port 6600, and the first line is just me invoking telnet to connect to that port on my moode player "moode3a".
The "OK MPD 0.21.11" response indicates I've successfully connected to MPD.
I entered "update" (and hit return) and the next two lines are the response. I then left telnet idle and MPD tore down the connection after it timed out.
I'm sure you have telnet. Sorry I didn't think of it before.
Regards,
Kent
That worker task upmpddb essentially duplicates the "mpc update" command by an alternative method which would work for you on your mac if you don't want to try building mpc from source.
The alternative method is to use the MPD protocol via telnet. Here's an example on my Linux laptop:
Code:
kreed@T520 ~ $ telnet moode3a 6600
Trying 192.168.1.195...
Connected to moode3a.fios-router.home.
Escape character is '^]'.
OK MPD 0.21.11
update
updating_db: 8
OK
Connection closed by foreign host.
MPD is listening on port 6600, and the first line is just me invoking telnet to connect to that port on my moode player "moode3a".
The "OK MPD 0.21.11" response indicates I've successfully connected to MPD.
I entered "update" (and hit return) and the next two lines are the response. I then left telnet idle and MPD tore down the connection after it timed out.
I'm sure you have telnet. Sorry I didn't think of it before.
Regards,
Kent