musiccast-repairkit/README.md

173 lines
8.1 KiB
Markdown
Raw Normal View History

2021-03-31 22:02:46 +02:00
# MusicCast "repair kit" 🩹
2018-08-09 21:20:30 +02:00
[![Docker Hub](https://github.com/nicolabs/musiccast-repairkit/actions/workflows/dockerhub.yml/badge.svg)](https://hub.docker.com/r/nicolabs/musiccast-repairkit) [![GitHub repo](https://img.shields.io/badge/GitHub-repo-pink.svg?logo=github)](https://github.com/nicolabs/musiccast-repairkit) [![Buy us a tree](https://img.shields.io/badge/Plant%20trees-%F0%9F%8C%B3-lightgreen)](https://plant.treeware.earth/nicolabs/musiccast-repairkit)
2018-08-09 21:20:30 +02:00
2021-03-31 21:42:02 +02:00
This program will help you implement missing features for your [Yamaha MusicCast©](https://usa.yamaha.com/products/contents/audio_visual/musiccast/index.html) devices by watching events (e.g. volume or source change) and automatically updating the settings, according to your scenarios.
2021-03-28 15:09:20 +02:00
2021-03-31 21:42:02 +02:00
Scenarios are pluggable scripts that you can implement in JavaScript ([NodeJs](https://nodejs.org/)).
Scripts are already provided for the following use cases :
2021-03-31 21:42:02 +02:00
- [change the sound program when you're switching from e.g. TV to Spotify and vice versa](#automatic-sound-program-depending-on-the-source)
- [synchronize the volume of two devices](#sync-volume-of-several-devices)
2021-03-28 15:28:22 +02:00
2021-03-31 21:42:02 +02:00
## Provided scenarios
2021-03-28 15:28:22 +02:00
2021-06-08 13:57:12 +02:00
Each scenario is implemented as a script in the `scripts/` directory in this project.
2021-03-28 15:28:22 +02:00
2021-03-31 21:42:02 +02:00
### Automatic sound program depending on the source
2021-03-28 15:28:22 +02:00
![Illustration : source buttons on remote](doc/source-buttons.png)
2021-06-08 13:57:12 +02:00
*This is the script that comes from the original project, [axelo/yamaha-sound-program-by-source](https://github.com/axelo/yamaha-sound-program-by-source).*
2021-03-28 15:28:22 +02:00
When the input source of your Yamaha receiver changes, the sound program and clear voice settings are automatically changed.
Currently the following mappings from source to sound program are hard coded
2021-03-31 21:42:02 +02:00
tv => tv_program with clear_voice enabled
bd_dvd => tv_program with clear_voice enabled
spotify => music with clear_voice disabled
airplay => music with clear_voice disabled
2021-03-28 15:28:22 +02:00
On the command line, use `-s scripts/audio-profile.js` to enable this script and use the `--conf.audio-profile.source` option to set the hostname or IP address of the receiver.
2021-03-28 15:28:22 +02:00
2021-06-08 13:57:12 +02:00
Top-level options (e.g. `--source`) and configuration file are also valid (see instructions below).
2021-03-28 15:28:22 +02:00
2021-03-31 21:42:02 +02:00
### Sync volume of several devices
2021-03-28 15:28:22 +02:00
![Illustration : volume buttons on remote](doc/volume-buttons.png)
2021-03-31 21:42:02 +02:00
If you have a Yamaha MusicCast receiver (like *CRX N470D*) *wirelessly* connected to Yamaha MusicCast speakers (like a MusicCast 20 stereo pair), you may have noticed that using the front volume button or the IR remote from the CRX will not update the volume of the linked speakers. Those hardware buttons only work with speakers directly wired to the CRX receiver. Your only option to set the same volume to all connected devices is to use the Yahama MusicCast mobile app, which is far less user-friendly than the physical remote.
2021-03-28 15:28:22 +02:00
2021-03-29 13:18:27 +02:00
This script will solve this by listening to volume updates on a source device and applying any volume change to one or more target devices.
2021-03-28 15:28:22 +02:00
2021-03-31 21:42:02 +02:00
On the command line, use `-s scripts/sync-volume.js` to enable this script and use the following options :
- `--conf.sync-volume.source` sets the hostname or IP address of the *master* receiver
- `--conf.sync-volume.target` lists the *slave* devices that will be updated with the master's volume. You can separate them with a space or pass the option several times.
2021-03-28 15:28:22 +02:00
2021-06-08 13:57:12 +02:00
Top-level options (e.g. `--source`) and configuration file are also valid (see instructions below).
2021-06-09 23:25:19 +02:00
### Sync standby mode of several devices
It sometimes happens that wirelessly-linked devices don't go to standby mode or don't awake together with the main one.
It may be a bug or a reliability issue with network protocols ; however the result is that this forces you to physically put them on/off.
This script will automatically forces a given list of devices to power on or off following the main device power status.
On the command line, use `-s scripts/standby-together.js` to enable this script and use the following options :
- `--conf.standby-together.source` sets the hostname or IP address of the *master* receiver
- `--conf.standby-together.target` lists the *slave* devices that will follow the master's power status. You can separate them with a space or pass the option several times.
Top-level options (e.g. `--source`) and configuration file are also valid (see instructions below).
2021-03-31 21:42:02 +02:00
## Command line usage
2021-03-29 13:18:27 +02:00
2021-06-08 13:57:12 +02:00
This program requires [Node.js](https://nodejs.org) to run.
2021-03-31 21:42:02 +02:00
When running the program you need to specify which scenarios to run.
The scenarios are `.js` scripts which implement the use cases above. More details in the next sections.
2021-03-31 21:42:02 +02:00
Use the `-s` command line option to specify which script to load :
node . -s ./scripts/sync-volume.js --source=192.168.1.42 --target=192.168.1.43 --target=192.168.1.44
2018-08-09 21:20:30 +02:00
2021-06-08 13:57:12 +02:00
Or in a configuration file (let's say `config.json`) :
2018-08-09 21:20:30 +02:00
2021-03-31 21:42:02 +02:00
```json
{
"conf": {
"sync-volume": {
2021-06-08 13:57:12 +02:00
"source": "192.168.1.42",
"target": [
"192.168.1.43",
"192.168.1.44"
]
}
}
}
2021-03-31 21:42:02 +02:00
```
2021-03-31 21:42:02 +02:00
Then use the `--config` option :
node . -s ./scripts/sync-volume.js --config config.json
2021-03-31 21:42:02 +02:00
You can define generic options at the top level and scenario-specific options under a prefix named after the script's name (its filename without extension).
2021-06-08 13:57:12 +02:00
For instance with `--source 1.2.3.4 --conf.sync-volume.source 5.6.7.8`, `1.2.3.4` will be used as the *source* parameter by default but `5.6.7.8` will be used for the *sync-volume* scenario only.
2021-06-08 13:57:12 +02:00
You can pass those arguments multiple times or give several space-separated values if you need to.
2021-03-31 21:42:02 +02:00
The following environment variables may be specified before running `index.js` :
2018-08-09 21:20:30 +02:00
2021-03-31 21:42:02 +02:00
LOCAL_IP # Your local ip address to use, 0.0.0.0 could work in some setups
PORT # Port listening for events from the receiver, defaults to 41100
2021-03-29 13:18:27 +02:00
Example
2021-03-31 21:42:02 +02:00
PORT=44444 LOCAL_IP=192.168.1.187 node .
2018-08-09 21:20:30 +02:00
2021-03-31 21:42:02 +02:00
## Docker usage
2021-06-11 00:24:49 +02:00
Instead of installing _Node.js_ and running the scripts you can run from a [docker](https://www.docker.com/) image :
docker run -d --network=host nicolabs/musiccast-repairkit:1.1 -s ./scripts/standby-together.js --source 192.168.1.42 --target 192.168.1.43
2021-06-08 13:57:12 +02:00
2021-03-31 21:42:02 +02:00
Please see [docker-compose.yml](docker-compose.yml) for a deployment template.
2021-03-31 21:42:02 +02:00
This sample contains a example *command* that you shall override to fit your needs.
You can edit it locally to reflect the IP addresses of your setup (or use a `.env` file or set environment variables).
It should not be necessary to define a `LOCAL_IP` environment variable as IP addresses inside the container will likely don't match the one of the host.
2021-03-31 21:42:02 +02:00
### Build & deploy commands
2021-03-29 13:18:27 +02:00
2021-03-31 21:42:02 +02:00
Build :
2021-03-29 13:18:27 +02:00
2021-03-31 21:42:02 +02:00
docker-compose build
2021-03-24 22:38:43 +01:00
2021-03-28 15:28:22 +02:00
Or build for multiple platforms :
2021-03-31 21:42:02 +02:00
docker buildx build --platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x -t nicolabs/musiccast-repairkit .
2021-03-28 15:28:22 +02:00
Run locally :
2021-03-24 22:38:43 +01:00
2021-03-31 21:42:02 +02:00
docker-compose up --detach
2021-03-24 22:38:43 +01:00
2021-06-08 13:57:12 +02:00
Deploy on a swarm cluster :
2021-03-24 22:38:43 +01:00
2021-03-31 21:42:02 +02:00
docker stack deploy -c docker-compose.yml musiccast-repairkit
2021-03-24 22:38:43 +01:00
2021-03-31 21:42:02 +02:00
## Logging and debugging
2021-03-24 22:38:43 +01:00
2021-06-10 07:47:52 +02:00
Logging is configured in the [`logging.js`](logging.js) module : feel free to override it locally or in a custom Docker image.
There is a special `scripts/debug.js` script that does nothing but printing debug informations. It is simply loaded as a scenario (you need to set log level to *debug* at least) :
node . -s ./scripts/sync-volume.js ./scripts/debug.js -l debug --source=192.168.1.42 ...
This will log network activity (Node.js native) :
2021-03-24 22:38:43 +01:00
2021-03-31 21:42:02 +02:00
NODE_DEBUG="net" node index.js ...
2021-03-24 22:38:43 +01:00
2021-03-31 21:42:02 +02:00
# References
2018-08-09 21:20:30 +02:00
2021-03-31 21:42:02 +02:00
- http://habitech.s3.amazonaws.com/PDFs/YAM/MusicCast/Yamaha%20MusicCast%20HTTP%20simplified%20API%20for%20ControlSystems.pdf
- https://www.pdf-archive.com/2017/04/21/yxc-api-spec-advanced/yxc-api-spec-advanced.pdf
- https://github.com/samvdb/php-musiccast-api
- [musiccast2mqtt, another implementation with MQTT, but old](https://github.com/ppt000/musiccast2mqtt) ([doc](https://musiccast2mqtt.readthedocs.io/en/latest/))
## Licence
This package is [Treeware](https://treeware.earth). If you use it in production, then we ask that you [**buy the world a tree**](https://plant.treeware.earth/nicolabs/musiccast-repairkit) to thank us for our work. By contributing to the Treeware forest youll be creating employment for local families and restoring wildlife habitats.