MirrorNest
← Todos os guias

Frigate NVR

A self-hosted network video recorder with real-time AI object detection — it only alerts and saves clips for actual people, cars, or animals, instead of every motion event a plain security camera would trigger on.

Destino: Any Docker host (a Google Coral USB accelerator is recommended but not required)security-camerasNVRAI-detectionSite oficial ↗Documentação oficial ↗
Este guia foi elaborado a partir da documentação oficial do Frigate NVR, ligada acima — verifique sempre lá os nomes exatos dos pacotes/versões antes de executar estes comandos num servidor de produção, uma vez que as versões da distribuição e do projeto mudam com o tempo.
  1. 1Create a config.yml describing your cameras

    Each camera entry needs its RTSP stream URL and which objects to detect (person, car, dog, etc.); Frigate's docs have a full reference for every option.

  2. 2Run the official container

    A shared-memory size of at least 64MB per camera is required -- undersizing this is the most common first-run problem.

    docker run -d \ --name frigate \ --restart unless-stopped \ --shm-size=256m \ -v ./frigate/config.yml:/config/config.yml \ -v ./frigate/storage:/media/frigate \ -v /etc/localtime:/etc/localtime:ro \ -p 5000:5000 -p 8554:8554 \ --device /dev/dri/renderD128 \ ghcr.io/blakeblackshear/frigate:stable
  3. 3Open the Frigate web UI

    Review live camera feeds, detection events, and saved clips; connect Frigate to Home Assistant for notifications via the official integration.

    http://your-server-ip:5000