discarr/docs/quickstart.md
pyr0ball 12f540d072
Some checks are pending
Deploy docs to GitHub Pages / build (push) Waiting to run
Deploy docs to GitHub Pages / deploy (push) Blocked by required conditions
docs: screenshots, sanitize PII, expand hardware encode docs
- Add 4 Playwright screenshots: main UI, scanning, title mapping, mobile
- Embed screenshots in README, index.md, and quickstart.md
- Sanitize docs: replace real name/hostname (alan/strahl) with
  generic examples (mediauser/encode-box)
- ffmpeg.md: add NVENC, QSV, and VAAPI hardware acceleration sections;
  document QSV custom build requirement and jellyfin-ffmpeg workaround
2026-05-27 09:59:51 -07:00

2.2 KiB

Quick Start

1. Install Discarr

Follow the installation guide. For the fastest path:

git clone https://git.opensourcesolarpunk.com/Circuit-Forge/discarr
cd discarr
sudo bash install.sh

2. Configure API keys

mkdir -p ~/.config/media-postprocessor
cp api-keys.conf.example ~/.config/media-postprocessor/api-keys.conf
$EDITOR ~/.config/media-postprocessor/api-keys.conf

Minimum config:

SONARR_URL=http://your-sonarr-host:8989/sonarr
SONARR_API_KEY=your-sonarr-api-key

RADARR_URL=http://your-radarr-host:7878/radarr
RADARR_API_KEY=your-radarr-api-key

Find your API keys in Sonarr/Radarr under Settings → General → Security → API Key.

3. Start Discarr

# If installed as a service:
systemctl start discarr

# Or run directly:
node /opt/discarr/server.js

# Or with Docker:
docker run -d -p 8603:8603 \
  -v ~/.config/media-postprocessor:/root/.config/media-postprocessor:ro \
  -v /path/to/media:/media \
  pyr0ball/discarr:latest

Open http://localhost:8603.

4. Scan a disc

Discarr scanning a disc — layout detection in progress

  1. Paste the path to a disc directory or ISO (e.g. /media/disc/VIDEO_TS) into the Path field
  2. Click Scan
  3. Discarr lists the disc titles with duration and chapter count

5. Map titles to arr items

Title mapping — disc titles on the left, Sonarr/Radarr search on the right

For each title:

  1. Choose TV (Sonarr) or Movie (Radarr)
  2. Search for the series or movie name
  3. For TV: select the season and episode(s) the title maps to
  4. Click Queue

6. Monitor the encode

The Queue tab shows running and pending encode jobs. Each job shows:

  • Input file and mapped target
  • Encode progress (% and ETA)
  • Status: pendingencodingnotifyingdone

Once encoding finishes, Discarr fires the notification hook and Sonarr/Radarr picks up the import automatically.

Next steps