MPD (Music Player Daemon)
MS communicates with MPD using the TCP client connection.
You should uncomment/create the following settings in your mpd config:
bind_to_address "any" # or a specific ipv4/v6 address
port "6600"
Configuration
- ENV
- File
- AIO
| Environmental Variable | Required? | Default | Description |
|---|---|---|---|
MPD_URL | No | localhost:6600 | |
MPD_PASSWORD | No |
CONFIG/mpd.json
[
{
"enable": true,
"name": "MyMPD",
"data": {
"url": "192.168.0.100:6600",
"password": "MY_PASSWORD"
},
"options": {
"disableDiscovery": false
}
}
]
or explore the schema with an example and live editor/validator
CONFIG_DIR/config.json
{
"sources": [
{
"enable": true,
"name": "MyMPD",
"data": {
"url": "192.168.0.100:6600",
"password": "MY_PASSWORD"
},
"options": {
"disableDiscovery": false
},
"type": "mpd"
}
]
}
or explore the schema with an example and live editor/validator