[Config Support]: Seem to be too stupid to get Frigate running #13208
-
|
I was running the 13.2 and that was working OK. I upgraded to 14 (also tried to install it several times new from scratch, using these instructions (as for the old/original setup): Version0,14 Frigate config filedocker-compose.yaml
services:
frigate:
container_name: frigate
privileged: true
restart: unless-stopped
image: ghcr.io/blakeblackshear/frigate:stable
shm_size: "999mb" # update for your cameras based on calculation above
devices:
- /dev/bus/usb:/dev/bus/usb
- /dev/dri/renderD128 # for intel hwaccel, needs to be updated for your hardware
volumes:
- /etc/localtime:/etc/localtime:ro
- /opt/frigate/config:/config:rw
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "8971:8971"
- "5000:5000" # Internal unauthenticated access. Expose carefully.
- "8554:8554" # RTSP feeds
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment:
FRIGATE_RTSP_PASSWORD: "PASS"
--------------------------------------
config.yaml
mqtt:
enabled: false
detectors:
coral:
type: edgetpu
device: usb
ffmpeg:
hwaccel_args: preset-vaapi
input_args:
- -avoid_negative_ts
- make_zero
#Global Object Settings
objects:
track:
- person
- dog
- cat
- car
- motorcycle
- bicycle
birdseye:
enabled: True
mode: continuous
snapshots:
enabled: True
timestamp: False
bounding_box: true
retain:
default: 90
record:
enabled: True
retain:
days: 21
mode: motion
events:
retain:
default: 21
mode: active_objects
detect:
stationary:
interval: 50
threshold: 50
#Kamere
cameras:
1:
ffmpeg:
inputs:
- path: rtsp://ha:[email protected]:554/cam/realmonitor?channel=1&subtype=0
roles:
- record
- detect
detect:
width: 3840
height: 2160
fps: 5
motion:
mask:
- 1625,179,2023,179,2430,215,2641,267,2817,199,3143,202,3840,420,3840,0,0,0,0,453,339,267,1173,68,1218,244
zones:
parkirisce:
coordinates: 3840,2160,3840,430,3374,254,2775,163,2720,244,2453,192,1834,163,1495,186,1251,231,1208,94,371,274,0,485,0,2160
objects:
- person
- dog
- cat
- car
- motorcycle
- bicycle
2:
ffmpeg:
inputs:
- path: rtsp://ha:[email protected]:554/cam/realmonitor?channel=2&subtype=0
roles:
- record
- detect
detect:
width: 2880
height: 1620
fps: 5
birdseye:
mode: objectsRelevant log outputnot able to read the log as the website does not run
I see only this (on port 5000)
To spletno mesto ne more zagotoviti varne povezaveSpletno mesto 10.10.10.11 je poslalo neveljaven odgovor.
Poskušajte zagnati orodje Omrežna diagnostika Windows.
ERR_SSL_PROTOCOL_ERRORFrigate statsNo response Operating systemProxmox Install methodDocker Compose Object DetectorCoral Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Replies: 9 comments 5 replies
-
|
You can view logs with docker: https://docs.frigate.video/troubleshooting/faqs#how-can-i-view-the-frigate-log-files-without-using-the-web-ui |
Beta Was this translation helpful? Give feedback.
-
|
LOG: |
Beta Was this translation helpful? Give feedback.
-
The errors show that your camera names need to be alphanumeric, not just numeric, and that for camera 8, your birdseye mode is wrong, it needs to be |
Beta Was this translation helpful? Give feedback.
-
|
Renamed cameras from 1 to c1 and 2 to c2. |
Beta Was this translation helpful? Give feedback.
-
|
Your Frigate database can't be found or it's not readable. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the help. - /dev/dri/renderD128 # for intel hwaccel, needs to be updated for your hardwareconfig: And the logs: |
Beta Was this translation helpful? Give feedback.
-
|
You made your config volume read-only. Try it like this: |
Beta Was this translation helpful? Give feedback.
-
|
I can't remember exactly what error I had, but it was similar. I used the below in my frigate config yml file which allowed it to work |
Beta Was this translation helpful? Give feedback.
-
|
The other bit I noticed different to my setup (I run on OMV7) is the devices - |
Beta Was this translation helpful? Give feedback.

#9539 Check this
Dont just restart the container with different settings: docker stop frigate
and then run the docker-compose.yaml (or change settings in Portainer if installed).
The frigate container must be completely stopped.