Emby-to-OPPO/Chinoppo playback with NAS paths, room control, diagnostics, and Docker updates.
2.2K
Home Cinema Control (HCC) turns playback in Emby or Jellyfin into a complete home-cinema flow for OPPO and Chinoppo players: verified media paths, NFS/SMB mounts, optional TV/AV input control, diagnostics, logs, and Docker-first updates.
docker volume create home-cinema-control-config
docker run -d \
--name home-cinema-control \
--network host \
--cap-add NET_RAW \
--restart unless-stopped \
-e TZ=Europe/Madrid \
-e PYTHONUNBUFFERED=1 \
-e HCC_CONFIG_FILE=/config/config.json \
-e HCC_SECRETS_FILE_PATH=/config/secrets.json \
-v home-cinema-control-config:/config \
tousled/home-cinema-control:latest
Open:
http://<host>:8090
Host networking is required because HCC talks directly to Emby, the player, optional room devices, and local network discovery tools.
services:
home-cinema-control:
image: tousled/home-cinema-control:latest
container_name: home-cinema-control
network_mode: host
cap_add:
- NET_RAW
restart: unless-stopped
environment:
TZ: Europe/Madrid
PYTHONUNBUFFERED: "1"
HCC_CONFIG_FILE: /config/config.json
HCC_SECRETS_FILE_PATH: /config/secrets.json
volumes:
- home-cinema-control-config:/config
volumes:
home-cinema-control-config:
name: home-cinema-control-config
docker compose pull
docker compose up -d
Docker Compose is the better option for long-running installs, version pinning, updates, and rollback.
latest: latest stable release.1.0.0, 1.0.1, ...: pinned stable releases.rc: latest release candidate.1.0.0-rc.1, ...: pinned release candidates.Images are published for linux/amd64 and linux/arm64.
tousled/home-cinema-controlghcr.io/tousled/home-cinema-controlHome Cinema Control is source-available, not open source. Personal non-commercial use is allowed under the repository license. Commercial use, redistribution, hosted services, published derivative images or packages, and paid support bundles require written permission from the maintainer.
Content type
Image
Digest
sha256:b2fbca463…
Size
71.8 MB
Last updated
9 days ago
docker pull tousled/home-cinema-control:rc