Give tracks a source-agnostic identity so the same song from different sources no longer replays in a loop. - Canonicalizer resolves (artist, title) to a MusicBrainz recording MBID (no API key; ~1 req/s, descriptive User-Agent, best-effort). Hits and confirmed misses are cached in SQLite; transient errors are not. - Track.key becomes mbid:<id> when resolved, else a normalized name:<artist>|<title> fallback — still source-agnostic. - Scheduler now owns the authoritative anti-repeat on the canonical key, canonicalizing the drawn track with a bounded retry; providers keep a cheap recent-locator filter to limit retries. - db: canonical_cache table, history.locator column with migration for existing databases, recent_locators(). - Canonicalization can be turned off via RADIEO_CANONICAL_ENABLED=0. Verified: MBID hit/cache/miss, cross-source key collapse, scheduler dodging a recent play, schema migration, and full stack (Navidrome + yt-dlp) with zero Python tracebacks and a valid 192 kbps MP3 stream. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
39 lines
1.7 KiB
YAML
39 lines
1.7 KiB
YAML
services:
|
|
ingest:
|
|
build: ./ingest
|
|
image: radieo-ingest
|
|
volumes:
|
|
- ./cache:/cache # volume partagé avec le stream (rw : téléchargements)
|
|
- ./state:/state # état persistant (SQLite) hors du cache éphémère
|
|
- ./config:/config:ro # config éditable sans rebuild (urls.txt yt-dlp)
|
|
environment:
|
|
- RADIEO_CACHE_DIR=/cache
|
|
- RADIEO_STATE_DIR=/state
|
|
- RADIEO_HTTP_PORT=8080
|
|
# Source Navidrome / OpenSubsonic (voir .env / .env.example).
|
|
# Laisser vide désactive la source : le stream joue alors son cache local.
|
|
- RADIEO_NAVIDROME_URL=${RADIEO_NAVIDROME_URL:-}
|
|
- RADIEO_NAVIDROME_USER=${RADIEO_NAVIDROME_USER:-}
|
|
- RADIEO_NAVIDROME_PASSWORD=${RADIEO_NAVIDROME_PASSWORD:-}
|
|
- RADIEO_NAVIDROME_PLAYLIST=${RADIEO_NAVIDROME_PLAYLIST:-}
|
|
- RADIEO_RETENTION_KEEP=${RADIEO_RETENTION_KEEP:-20}
|
|
# Source yt-dlp : liste d'URL dans config/urls.txt (créer depuis l'exemple).
|
|
- RADIEO_YTDLP_URLS_FILE=/config/urls.txt
|
|
# Dosage du mix entre les sources (0 désactive).
|
|
- RADIEO_WEIGHT_NAVIDROME=${RADIEO_WEIGHT_NAVIDROME:-3}
|
|
- RADIEO_WEIGHT_YTDLP=${RADIEO_WEIGHT_YTDLP:-1}
|
|
# Canonicalizer MusicBrainz (identité MBID inter-sources ; sans clé).
|
|
- RADIEO_CANONICAL_ENABLED=${RADIEO_CANONICAL_ENABLED:-1}
|
|
- RADIEO_USER_AGENT=${RADIEO_USER_AGENT:-radieo/0.1 (personal music radio)}
|
|
restart: unless-stopped
|
|
|
|
stream:
|
|
build: ./stream
|
|
image: radieo-stream
|
|
depends_on:
|
|
- ingest
|
|
ports:
|
|
- "8000:8000" # flux HTTP : http://localhost:8000/radio.mp3
|
|
volumes:
|
|
- ./cache:/cache:ro # lecture seule : secours + résolution des chemins
|
|
restart: unless-stopped
|