apps.header.allAppsCount
cinephage
apps.detail.types.app from MoldyTaint's Repository
apps.detail.sections.overview
Cinephage is a self-hosted media management application — automated movie/TV library management, quality upgrades, subtitle sync, and streaming.
Setup: On first launch, visit the WebUI to create your admin account.
Readme
View on GitHub
Cinephage
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
![]() |
![]() |
![]() |
![]() |
What is Cinephage?
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.
What It Replaces
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.
Key Features
Stream without downloading
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.
Built-in Cloudflare bypass
Camoufox integration handles Cloudflare challenges automatically. No separate FlareSolverr container to maintain, no configuration headaches. It just works.
Usenet streaming
Stream directly from NZBs without downloading the entire file first. Unique seekable stream implementation with adaptive prefetching and segment caching.
Live TV with portal discovery
Connect Stalker portals and automatically discover working MAC addresses. Full EPG support, channel management, and HLS streaming.
Smart quality scoring
50+ scoring factors including codec efficiency (x265/AV1), HDR formats, audio quality, and release group reputation. Custom format creation for personalized scoring rules.
Smart lists
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.
Everything else you'd expect
- 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
Requirements
- TMDB API Key — Free at themoviedb.org/settings/api
- Download Client (optional) — qBittorrent, SABnzbd, NZBGet, Real-Debrid, or TorBox
- Or use streaming mode — no download client needed
- Real-Debrid and TorBox accept torrent releases, materialize ready files directly into the resolved library destination, and can optionally remove provider items after a durable import.
Quick Start
Cinephage runs on port 3000 by default.
Docker (Recommended)
- 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 -d
Open 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.
Bare Metal
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 .env
Edit .env — set at minimum:
BETTER_AUTH_SECRET=<your-secret>
ORIGIN=http://localhost:3000
BETTER_AUTH_URL=http://localhost:3000
Then start:
npm start
Data is stored in ./data by default (no /config mount needed on bare metal).
Running as a systemd service
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.target
sudo useradd -r -s /bin/false cinephage
sudo chown -R cinephage:cinephage /opt/Cinephage
sudo systemctl daemon-reload
sudo systemctl enable --now cinephage
Adjust User, WorkingDirectory, and the node binary path to match your setup.
Configuration
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) |
Documentation
Comprehensive documentation is available at docs.cinephage.net.
Community
- Discord — Chat and support
- GitHub Issues — Bug reports and feature requests
- Contributing — Development guidelines
Contributors
Thanks to everyone who has contributed to Cinephage!
Acknowledgments
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.
AI Disclosure
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.
Legal Notice
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.
License
Cinephage - Self-hosted Media Management Copyright (C) 2025 Cinephage Contributors
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Full text: GNU General Public License v3.0
apps.marketingCta.appInstallTitle
apps.marketingCta.appInstallDescription
apps.detail.sections.categories
apps.detail.sections.related
apps.detail.related.exploreCategories
apps.detail.related.exploreAllapps.detail.sections.links
apps.detail.sections.details
ghcr.io/moldytaint/cinephage:latestapps.detail.sections.runtime
- apps.detail.details.webui
http://[IP]:[PORT:3000]- apps.detail.details.network
bridge- apps.detail.details.shell
bash- apps.detail.details.privileged
- false
- apps.detail.details.extraParams
--shm-size=256m
apps.detail.sections.configuration
Web UI port
- apps.detail.config.target
- 3000
- apps.detail.config.default
- 3000
Configuration and app data
- apps.detail.config.target
- /config
- apps.detail.config.default
- /mnt/user/appdata/cinephage
Media library
- apps.detail.config.target
- /media
- apps.detail.config.default
- /mnt/user/media
Download directory
- apps.detail.config.target
- /downloads
- apps.detail.config.default
- /mnt/user/downloads
Required: Authentication secret (generate with: openssl rand -base64 32)
- apps.detail.config.target
- BETTER_AUTH_SECRET
Timezone (e.g. America/New_York)
- apps.detail.config.target
- TZ
- apps.detail.config.default
- UTC
User ID for file ownership
- apps.detail.config.default
- 1000
Group ID for file ownership
- apps.detail.config.default
- 1000



