Unraid Community Applications template for SendRec — the open-source async video platform built for Europe.
SendRec requires two external services. Install them from the Unraid CA store before installing SendRec:
- PostgreSQL 16+ — install the
postgrescontainer from CA - S3-compatible storage — install Garage, MinIO, or use a managed provider (AWS S3, Backblaze B2, Hetzner Object Storage)
- In the Unraid Docker tab, click Add Container
- Search for SendRec in Community Applications
- Fill in the required fields:
- Database URL — PostgreSQL connection string (e.g.
postgres://sendrec:yourpassword@192.168.1.100:5432/sendrec?sslmode=disable) - JWT Secret — generate with
openssl rand -hex 32 - Base URL — the URL where SendRec will be accessible (e.g.
http://192.168.1.100:8080) - S3 Endpoint — your S3 storage endpoint (e.g.
http://192.168.1.100:3900for Garage) - S3 Access Key and S3 Secret Key — credentials for your S3 storage
- Database URL — PostgreSQL connection string (e.g.
- Click Apply
To enable automatic video transcription:
- Download the whisper model (~466 MB):
wget -P /mnt/user/appdata/sendrec/models/ https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small.bin - Set the Whisper Model path to
/mnt/user/appdata/sendrec/models/ - Set Transcription Enabled to
true
Set AI Enabled to true and configure the AI Base URL and AI API Key for your OpenAI-compatible provider (Mistral, OpenAI, Ollama, etc.).
- Self-Hosting Guide — full environment variable reference
- API Documentation — interactive API reference
- GitHub Issues — bug reports and feature requests
AGPL-3.0 — same as SendRec.