A self-hosted Netflix-like media server with built-in torrent search, downloads, and subtitles. Runs on a Raspberry Pi.
Everything you need to find, download, and watch media — no configuration required.
Dark theme with trending movies, TV shows, poster art, and search — all from free public APIs (TMDB scraping, TVmaze, mdblist).
Searches PirateBay, YTS, and 1337x in parallel. One-click download with real-time progress tracking.
Powered by librqbit — a pure Rust BitTorrent engine. No qBittorrent or Transmission needed.
Search and download subtitles from OpenSubtitles directly in the browser. Saved next to video files for automatic loading.
Sideload the included WebView APK to get a fullscreen pizerarr experience on any Fire Stick or Android TV.
See exactly how much space each movie takes on your SD card with a colored usage bar.
Get pizerarr running in under a minute.
# On your Raspberry Pi (arm64)
curl -Lo pizerarr https://github.com/levkropp/pizerarr/releases/latest/download/pizerarr-linux-arm64
chmod +x pizerarr
# Minimal — just works
./pizerarr
# Or configure paths
PIZERARR_MEDIA_DIR=/mnt/videos PIZERARR_DOWNLOAD_DIR=/mnt/downloads ./pizerarr
Navigate to http://<your-pi-ip>:8080 and start browsing.
sudo mv pizerarr /usr/local/bin/
sudo tee /etc/systemd/system/pizerarr.service <<EOF
[Unit]
Description=pizerarr media server
After=network-online.target
[Service]
ExecStart=/usr/local/bin/pizerarr
Environment=PIZERARR_MEDIA_DIR=/srv/pizerarr/media
Environment=PIZERARR_DOWNLOAD_DIR=/srv/pizerarr/downloads
Environment=PIZERARR_PORT=80
AmbientCapabilities=CAP_NET_BIND_SERVICE
Restart=on-failure
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable --now pizerarr
Watch pizerarr on your TV.
Use the Downloader app on your Fire Stick, or adb install pizerarr-firetv.apk from your computer.
Find "pizerarr" on your home screen. It opens fullscreen and works with the Fire TV remote.