← Tutte le guide
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.
Sistema: Any Docker host (a Google Coral USB accelerator is recommended but not required)security-camerasNVRAI-detectionSito ufficiale ↗Documentazione ufficiale ↗
Questa guida è redatta a partire dalla documentazione ufficiale di Frigate NVR, linkata sopra — verifica sempre lì i nomi esatti di pacchetti/versioni prima di eseguire questi comandi su un server di produzione, poiché le versioni della distribuzione e del progetto cambiano nel tempo.
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.
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:stable3Open 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