Self-hosted media management. Everything in one app.
One app that actually replaces your entire media stack
Node.js 22+ · Svelte 5 · SQLite · TypeScript
Cinephage — from Greek cine (film) + phage (to devour). A film devourer.
What is Cinephage • Quick Start • Documentation • Community
Cinephage is a single app for your whole media setup. Instead of running multiple services that don't talk to each other, you get one tool that handles everything.
One database. All your movies, TV shows, live TV channels, subtitles, and indexer configs live together. No sync issues, everything stays together.
One interface. Browse, search, monitor, and manage everything from a single UI that works on desktop and mobile.
One configuration. Set up your indexers, download clients, and preferences once. They work across movies, TV, and streaming.
One place. Whether you're downloading a BluRay remux, streaming via .strm files, or watching live TV, it's all in Cinephage.
Cinephage brings together functionality you'd typically find across multiple applications:
- Radarr & Sonarr — Movie and TV series management
- Prowlarr — Indexer management with supported trackers
- Bazarr — Multi-provider subtitle management
- Overseerr — Content discovery and smart lists
- FlareSolverr — Built-in Cloudflare bypass (no external service needed)
- Plus — Live TV/IPTV management, usenet streaming, and more
The *arr projects are fantastic at what they do. We just took a different path — one unified codebase instead of separate services that need to sync with each other.
Create .strm files that point to online sources and watch instantly. No disk space, no waiting for downloads, no seeding. Works with Jellyfin, Emby, Kodi, or any player that supports .strm files.
Camoufox integration handles Cloudflare challenges automatically. No separate FlareSolverr container to maintain, no configuration headaches. It just works.
Stream directly from NZBs without downloading the entire file first. Unique seekable stream implementation with adaptive prefetching and segment caching.
Connect Stalker portals and automatically discover working MAC addresses. Full EPG support, channel management, and HLS streaming.
50+ scoring factors including codec efficiency (x265/AV1), HDR formats, audio quality, and release group reputation. Custom format creation for personalized scoring rules.
Dynamic content discovery with auto-add to library. Import from IMDb, Trakt, TMDb lists, or create custom queries. "Automatically add all 2024 movies rated 7.5+" — fully automated.
- File watching and auto-import
- Multi-indexer search with deduplication
- 6 subtitle providers, 80+ languages
- 7 automated monitoring tasks
- Jellyfin/Emby notifications
- TRaSH Guides-compatible naming
- TMDB API Key — Free at themoviedb.org/settings/api
- Download Client (optional) — qBittorrent, SABnzbd, or NZBGet
- Or use streaming mode — no download client needed
Cinephage runs on port 3000 by default.
- Download the docker-compose.yaml and .env.example into a directory:
mkdir cinephage && cd cinephage
curl -O https://raw.githubusercontent.com/MoldyTaint/Cinephage/main/docker-compose.yaml
curl -O https://raw.githubusercontent.com/MoldyTaint/Cinephage/main/.env.example
cp .env.example .env-
Edit
.env— at minimum setBETTER_AUTH_SECRET(generate one withopenssl rand -base64 32). -
Update the volume mounts in
docker-compose.yamlto point to your media and download directories. -
Start it:
docker compose up -dOpen http://localhost:3000 and follow the setup wizard.
Image tags: latest (stable) · X.Y.Z/X.Y/X (stable semver) · dev and dev-YYYYMMDD-RUN (preview)
Note: Persistent data lives in
./config(created automatically). Logs go to container stdout/stderr. Never mount/app— it contains application code.
If you later access Cinephage through a hostname or reverse proxy, update BETTER_AUTH_URL in .env to that public URL. You can also set the External URL in the UI under Settings > System.
Prerequisites: Node.js 22+ · npm · git · ffmpeg (optional, for media info)
git clone https://github.com/MoldyTaint/Cinephage.git
cd Cinephage
npm ci
npm run build
cp .env.example .envEdit .env — set at minimum:
BETTER_AUTH_SECRET=<your-secret>
ORIGIN=http://localhost:3000
BETTER_AUTH_URL=http://localhost:3000
Then start:
npm startData is stored in ./data by default (no /config mount needed on bare metal).
Create /etc/systemd/system/cinephage.service:
[Unit]
Description=Cinephage Media Manager
After=network.target
[Service]
Type=simple
User=cinephage
WorkingDirectory=/opt/Cinephage
EnvironmentFile=/opt/Cinephage/.env
ExecStart=/usr/bin/node server.js
Restart=on-failure
RestartSec=10
[Install]
WantedBy=multi-user.targetsudo useradd -r -s /bin/false cinephage
sudo chown -R cinephage:cinephage /opt/Cinephage
sudo systemctl daemon-reload
sudo systemctl enable --now cinephageAdjust User, WorkingDirectory, and the node binary path to match your setup.
All environment variables are documented in .env.example. Key ones:
| Variable | Required | Description |
|---|---|---|
| BETTER_AUTH_SECRET | Yes | Session signing and API key encryption |
| ORIGIN | Recommended | Trusted origin for CSRF protection |
| BETTER_AUTH_URL | Recommended | Base URL for auth callbacks and redirects |
| TZ | No | Timezone for scheduled tasks (default: UTC) |
Comprehensive documentation is available at docs.cinephage.net.
- Discord — Chat and support
- GitHub Issues — Bug reports and feature requests
- Contributing — Development guidelines
Thanks to everyone who has contributed to Cinephage!
Cinephage draws inspiration from the excellent Radarr, Sonarr, Prowlarr, and Bazarr projects, with UI patterns influenced by Overseerr. Quality scoring data comes from Dictionarry. Metadata powered by TMDB.
See THIRD-PARTY-NOTICES.md for complete attribution.
This project was built with AI assistance. As a solo developer learning as I go, AI helps bridge the gap between ambition and experience. We believe in being upfront about how this is built.
Cinephage is a media management tool. It does not host, store, or distribute any media content. All content comes from external sources you configure. Live TV/IPTV functionality depends entirely on third-party services.