No frames have been received when using coral on proxmox LXC #6651
-
Hi there, I'm running frigate within a alpine based proxmox LXC container using docker.
My docker compose file: version: '3.8'
services:
frigate:
image: ghcr.io/blakeblackshear/frigate:stable
container_name: Frigate
restart: always
ports:
- 80:5000
volumes:
- ~/files/frigate/config.yml:/config/config.yml
- ~/files/frigate/storage:/media/frigate
- type: tmpfs
target: /tmp/cache
tmpfs:
size: 1000000000
devices:
- /dev/bus/usb:/dev/bus/usb And this my frigate config: mqtt:
host: 192.168.3.200
user: mqtt
password: pass
cameras:
wg:
ffmpeg:
inputs:
- path: rtsp://user:[email protected]:8554/unicast
roles:
- record
ffmpeg:
hwaccel_args: []
record:
enabled: True
retain:
days: 3
mode: all
detectors:
coral:
type: edgetpu
device: usb The coral is detected correctly within frigate: But all I see for the camera is this: As soon as I comment out the The frigate logs only show me this:
How can I debug this? Does anyone have the same issue? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This does not mean it is detected, the inference speed will show as 10 until inferences are run. The logs shown here look like it is stalling on initializing the coral most likely meaning the proxmox setup is not done correctly or there is some other issue |
Beta Was this translation helpful? Give feedback.
This does not mean it is detected, the inference speed will show as 10 until inferences are run.
The logs shown here look like it is stalling on initializing the coral most likely meaning the proxmox setup is not done correctly or there is some other issue