Add network bandwidth monitoring for frigate
Add Frigate+ API key to enable image annotation/upload Adjust doorbell motion parameters Adjust detect stationary threshold Enable recording retention for all 3 days and 30 days for motion
This commit is contained in:
@@ -119,8 +119,8 @@ cameras:
|
|||||||
- 0.79,0.003,0.79,0.035,0.82,0.035,0.82,0.003
|
- 0.79,0.003,0.79,0.035,0.82,0.035,0.82,0.003
|
||||||
- 0.828,0.003,0.828,0.035,0.858,0.035,0.858,0.003
|
- 0.828,0.003,0.828,0.035,0.858,0.035,0.858,0.003
|
||||||
- 0.866,0.003,0.866,0.035,0.896,0.035,0.896,0.003
|
- 0.866,0.003,0.866,0.035,0.896,0.035,0.896,0.003
|
||||||
threshold: 35
|
threshold: 30
|
||||||
contour_area: 15
|
contour_area: 18
|
||||||
improve_contrast: true
|
improve_contrast: true
|
||||||
version: 0.14
|
version: 0.14
|
||||||
camera_groups:
|
camera_groups:
|
||||||
@@ -139,9 +139,23 @@ camera_groups:
|
|||||||
detect:
|
detect:
|
||||||
stationary:
|
stationary:
|
||||||
interval: 50
|
interval: 50
|
||||||
threshold: 40
|
threshold: 50
|
||||||
|
|
||||||
snapshots:
|
snapshots:
|
||||||
enabled: True
|
enabled: True
|
||||||
retain:
|
retain:
|
||||||
default: 30
|
default: 30
|
||||||
|
|
||||||
|
record:
|
||||||
|
enabled: True
|
||||||
|
retain:
|
||||||
|
days: 3
|
||||||
|
mode: all
|
||||||
|
events:
|
||||||
|
retain:
|
||||||
|
default: 30
|
||||||
|
mode: motion
|
||||||
|
|
||||||
|
telemetry:
|
||||||
|
stats:
|
||||||
|
network_bandwidth: True
|
||||||
@@ -4,6 +4,9 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
#image: ghcr.io/blakeblackshear/frigate:stable
|
#image: ghcr.io/blakeblackshear/frigate:stable
|
||||||
image: gitea.tremendousturtle.tools/chris/frigate:v0.14.1-web-admin-088ff992
|
image: gitea.tremendousturtle.tools/chris/frigate:v0.14.1-web-admin-088ff992
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
- NET_RAW
|
||||||
shm_size: "250mb"
|
shm_size: "250mb"
|
||||||
devices:
|
devices:
|
||||||
- /dev/apex_0:/dev/apex_0 # Passes a PCIe Coral
|
- /dev/apex_0:/dev/apex_0 # Passes a PCIe Coral
|
||||||
@@ -28,6 +31,8 @@ services:
|
|||||||
- "5000:5000" # VS Code schema validation allowed
|
- "5000:5000" # VS Code schema validation allowed
|
||||||
expose:
|
expose:
|
||||||
- "8971"
|
- "8971"
|
||||||
|
secrets:
|
||||||
|
- PLUS_API_KEY
|
||||||
environment:
|
environment:
|
||||||
LIBVA_DRIVER_NAME: "radeonsi" # FRIGATE_RTSP_PASSWORD: "69$nC*6$jADbc!"
|
LIBVA_DRIVER_NAME: "radeonsi" # FRIGATE_RTSP_PASSWORD: "69$nC*6$jADbc!"
|
||||||
labels:
|
labels:
|
||||||
@@ -43,3 +48,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
proxy-net:
|
proxy-net:
|
||||||
external: true
|
external: true
|
||||||
|
|
||||||
|
secrets:
|
||||||
|
PLUS_API_KEY:
|
||||||
|
file: ./secrets/PLUS_API_KEY
|
||||||
Reference in New Issue
Block a user