mrkeyoor.com_
Sat 05 Sept 07:56 UTC
Self-Hostedevaluationupdated 05 Sept 2026

frigate review

Frigate is a self-hosted network video recorder that watches IP camera feeds, records footage, and runs object detection on your own hardware. It is built for people who want useful camera alerts and a searchable review screen without sending every stream to a cloud camera service.

Verdict

Our Frigate checkout installed 35 packages in 30 seconds and built in 11 seconds, but it exposed no test target for us to run. Frigate is the best fit here for a Home Assistant user who values local detection enough to manage camera streams, storage, Docker devices, and network boundaries. Keep looking if you need an easy Windows install or intend to expose a multi-user recorder before the security items named in v0.17.2 are resolved in a release you have verified.

We ran it

Lab card: what happened when we ran frigateScreenshot of frigate (frigate.video)
Install✓ · 30s35 packages · 37 MB
Build✓ · 11s
Testsn/ano test script
Known vulns0(pip-audit)
Repo3012 files~242,867 lines of source · 63.3 MB · 5 CI workflows

Answers from our run

Does frigate build from source?

Dependencies installed in 30 seconds (35 packages), and the build succeeded in 11 seconds. We cloned commit 287fc42 into a clean Debian container with 3 CPUs and no project-specific setup.

Does frigate have tests you can run?

Not through a standard command: the project exposes no test script or target that our harness could run.

Does frigate have known vulnerabilities in its dependencies?

pip-audit found none in the dependency tree at the time of our run.

Who should not use frigate?

Windows-only operators: the installation guide says Windows is unsupported and device passthrough under WSL or VirtualBox may be difficult or impossible.

What are the alternatives to frigate?

ZoneMinder, motionEye, Moonfire NVR. Our Frigate checkout installed 35 packages in 30 seconds and built in 11 seconds, but it exposed no test target for us to run.

Setup3/5Fast source checks; real deployment needs cameras, storage, and devices
Docs5/5Detailed guides cover hardware, streams, auth, storage, and Home Assistant
Community5/535,638 stars and issue activity through September 2026
Maturity4/5v0.17.2 is substantial, though three security items remained listed

Who it’s for

Home Assistant users who want local camera detections, recordings, live views, and MQTT-driven automations.
Self-hosters with dependable RTSP cameras and Intel, Nvidia, Hailo, Coral, or other supported acceleration hardware.
Households and small sites willing to tune camera streams, storage retention, zones, and motion masks.
Operators who can keep the authenticated and internal ports on the right sides of their network boundary.

Who it’s NOT for

Windows-only operators: the installation guide says Windows is unsupported and device passthrough under WSL or VirtualBox may be difficult or impossible.
Buyers expecting a plug-and-play cloud camera app: Frigate asks you to supply RTSP feeds, persistent storage, Docker configuration, and suitable detection hardware.
Home Assistant users who will not run MQTT: the official integration requires both systems to use the same MQTT broker.
Sites that must expose a multi-user recorder directly to the internet with no open security caveats: v0.17.2 fixed six advisories but listed three more for future versions.
Camera fleets limited to unreliable Wi-Fi streams or awkward codecs: the hardware guide discourages Wi-Fi cameras, while H.264 video and AAC audio have the widest feature compatibility.

Setup reality

Our sandbox installed 35 packages in 30 seconds and used 37 MB on disk. The build succeeded in 11 seconds. We skipped tests because commit 287fc42 had no test script or target. Pip-audit found 0 known vulnerabilities in the installed Python packages.

A useful deployment needs camera stream addresses and credentials, a persistent config and media volume, plus a retention policy. MQTT is optional for Frigate alone but required for its Home Assistant integration. Frigate can generate its own JWT secret and first admin password, though you still need to replace the password and protect the secret.

Docker Compose is the recommended route, preferably on bare-metal Debian. Hardware acceleration is strongly recommended, and device access varies by Intel, Nvidia, Hailo, Coral, Rockchip, and other platforms. Storage, shared memory, camera substreams, and four documented network ports need deliberate configuration; port 5000 is unauthenticated and must stay internal.

Frigate records 24/7 and spends detection work on motion

Frigate combines a network video recorder with local object detection for IP cameras. It can record continuously, retain footage according to detected objects, restream feeds over RTSP, and show low-latency live video through WebRTC or MSE. Motion detection decides where object detection should run, which keeps the expensive inference work focused on changing parts of a frame. Home Assistant is the natural companion, but MQTT also lets other systems consume events without adopting the Home Assistant interface.

The service has 4 documented ports with very different trust assumptions. Port 8971 carries the authenticated UI and API, while port 5000 exposes an unauthenticated internal interface for integrations. RTSP restreaming uses 8554, and WebRTC camera connections use 8555. That split is practical inside a controlled Docker network. It is dangerous if a broad port mapping or firewall rule makes the internal interface public. A reverse proxy belongs in front of 8971, not the unauthenticated port.

A 128 MB shared-memory setting is only a starting point

Docker Compose is the recommended installation path, and the guide says bare-metal Debian gives hardware devices the lowest-overhead route into the container. Frigate writes its configuration and SQLite database under /config, recordings and exports under /media/frigate, temporary recording segments under /tmp/cache, and decoded frames in /dev/shm. The documented 128 MB shared-memory default suits 2 cameras detecting at 720p. More cameras or larger frames require a calculation rather than copying the sample unchanged.

Home Assistant adds another moving part. MQTT is optional for a standalone Frigate server, but the official integration requires Frigate and Home Assistant to connect to the same broker. The integration can use port 5000 on a private Docker network or authenticated port 8971 across machines. Default TLS uses a self-signed certificate, which Home Assistant will reject unless you disable TLS on a trusted network or provide a valid certificate. These are ordinary self-hosting tasks, yet none disappears after the container starts.

What happened when we ran it

Our sandbox installed Frigate's Python environment in 30 seconds, adding 35 packages and consuming 37 MB on disk. The build completed successfully in another 11 seconds. We cloned commit 287fc42 into a fresh unprivileged Debian container with 3 CPUs and 8 GB of RAM, so these results describe repository setup under that constraint. They do not measure camera decoding, detector speed, recording throughput, or the size of a production container image.

There was no test script or target for the lab to invoke, so tests were skipped rather than passed. The checkout also had no tests directory and no Dockerfile, though it did contain a Compose file and 5 CI workflow files. Pip-audit reported 0 known vulnerabilities in the 35 installed Python packages. The repository itself contained 3,012 files, about 242,867 source lines, and occupied 63.3 MB before that environment was installed.

A 5 fps detection stream is enough for most ordinary scenes

Frigate works best when a camera supplies separate streams for different jobs. The detection feed can use a lower resolution and the default 5 fps, while the recording feed preserves the resolution you want to keep. The camera guide says higher detection frame rates increase CPU or GPU load directly and rarely improve tracking once an object remains visible for several seconds. Matching the aspect ratio of detection and recording streams also avoids awkward live-view and playback composition.

Camera choice can matter more than a YAML tweak. The docs prefer H.264 video with AAC audio for the broadest compatibility and discourage Wi-Fi cameras because unreliable streams can lose video data. H.265 saves bandwidth but has narrower browser and profile support. An accelerator is strongly recommended for detection, with documented paths for Intel OpenVINO, Nvidia GPUs, Hailo, Coral, Apple Silicon through a host proxy, and several other devices. Each path carries its own image, driver, or device-mapping decisions.

Version 0.17.2 fixed 6 advisories and named 3 still pending

The June 28, 2026 release is unusually direct about security. Its notes list 6 addressed advisories involving WebSockets, camera authorization, credential leakage, file reads, and go2rtc command handling. The same notes identify 3 advisories for future versions, including viewer access to sensitive logs, go2rtc information, and recordings from unauthorized cameras. That is a serious warning for internet-facing or role-separated installations. Check the exact release you deploy instead of assuming a newer source push has reached a stable image.

Development activity is plainly current. GitHub recorded the last push on September 4, 2026, and showed 35,638 stars plus 158 combined open issues and pull requests when fetched. A separate search counted 74 open issues and 84 open pull requests. Recently updated requests cover authentication redirects, long-lived tokens, adaptive-bandwidth playback, and accessibility for colorblind users. The queue is active rather than abandoned, but several requested behaviors matter to people running Frigate beyond a single trusted household.

The 11-second build does not make deployment an 11-second job

Frigate is a strong choice when local video, useful detections, and Home Assistant automation belong in one system. Our 11-second build and clean package audit make the source checkout easy to inspect, while the missing test target limits what that run proves. Budget the real effort for stable RTSP feeds, disk retention, shared memory, accelerator access, MQTT, and strict port exposure. If those controls sound like welcome ownership rather than chores, Frigate earns a serious trial on one camera before a full migration.

Alternatives

ProjectWhat it isPick it when
ZoneMinderA long-running Linux video surveillance system for IP, USB, and analog cameras.pick this instead when broad traditional CCTV support matters more than Frigate's Home Assistant-centered object detection workflow.
motionEyeA web interface for the Motion camera monitoring daemon.pick this instead when you want a simpler web front end for Motion and do not need Frigate's review and detector stack.
Moonfire NVRA security-camera recorder focused on efficient storage and video retrieval.pick this instead when dependable recording is the main job and local AI classification is optional.

What people are saying

  1. [velocity-scout] blakeblackshear/frigate

Sources

  1. Frigate repository and README
  2. Frigate installation guide
  3. Frigate camera setup guide
  4. Frigate authentication guide
  5. Frigate Home Assistant integration guide
  6. Frigate v0.17.2 release notes
  7. Frigate open issues

More self-hosted reviews

copyparty · zot · infra · consul · project-nomad · gpt-load · the whole board →