Frigate - NVR z funkcją wykrywania obiektów w czasie rzeczywistym dla kamer IP HA

Biorąc pod uwagę potencjalną wydajność zawsze lepiej mieć wersję pcie niż USB.

Natomiast instrukcja płyty głównej jest zbyt biedna, żeby dało się ocenić czy wersja m.2 pcie w ogóle zadziała (więc pozostaje jedynie droga eksperymentu)

Fujitsu wykorzystywało płyty główne produkcji Kontron, więc u nich możesz spróbować szukać lepszej dokumentacji

Dziękuje bardzo za pomoc

Podepnę się,
Czy udało się komuś odpalić detektor openvino GPU (tu jestem zielony) na frigate 0.14.1 postawionym jako LXC na PVE.
PVE stoi na terminalu z prockiem J5005.
LXC z frigate instalowany z proxmox helper scripsts od tteck’a

Witam,
Na początek napisze co mam:

Chciałbym przetestować działanie Frigate pod 3 kamery (testuję 1) z wykorzystaniem GPU i openvino.
Co zrobiłem:

  • zainstalowałem Frigate w dokerze debiana
  • zainstalowałem openvino (2023.3.0.13775)
  • dodałem gpu do debiana
ls /dev/dri
by-path  card0	card1  renderD128

moje configi:

  • /opt/frigate/docker-compose.yml"
version: "3.9" 
services: 
  frigate: 
    container_name: frigate 
    restart: unless-stopped 
    privileged: true 
    network_mode: host 
    image: ghcr.io/blakeblackshear/frigate:stable 
    shm_size: "256mb" 
    devices: 
      - /dev/dri/renderD128:/dev/dri/renderD128  # VAAPI 
    volumes: 
      - /etc/localtime:/etc/localtime:ro 
      - /opt/frigate/config:/config 
      - /opt/frigate/media:/media/frigate 
    environment: 
      FRIGATE_HWACCEL_ARGS: "openvino"  # Aktywacja OpenVINO 
      LIBVA_DRIVER_NAME: "iHD"  # Sterownik Intel dla VAAPI 
      LIBVA_PLUGIN_NAME: "openvino"  # OpenVINO

/opt/frigate/config/config.yml:

mqtt:
  enabled: False

detectors: 
  openvino: 
    type: openvino 
    device: AUTO  # CPU, GPU, MYRIAD, lub AUTO
 
cameras: 
  front_camera: 
    ffmpeg: 
      inputs: 
        - path: rtsp://adres_dzialajacej_kamery
          roles: 
            - detect 
            - rtmp 
    detect: 
      width: 1920 
      height: 1080 
      fps: 5

W logach pojawia się:
frigate.detectors.plugins.openvino WARNING : OpenVINO AUTO device type is not currently supported. Attempting to use GPU instead.
Co bym nie ustawił cpu, gpu, czy auto to firgate co chwila się rozłącza, Sprawdzam przez przegladarkę IP_debiana:5000
Obraz z kamery rtsp://adres_dzialajacej_kamery przez vlc działa płynnie.
Ktoś doradzi co robię żle.

Skąd pochodzą logi? …

docker logs -f frigate

Pytanie czy twój docker na pewno widzi twój

ls /dev/dri
by-path  card0	card1  renderD128

A jak to mogę sprawdzić?

https://www.reddit.com/r/debian/comments/s1md00/how_can_i_locate_the_graphics_card_through/
Nie posiadam takiej konfiguracji więc nie sprawdzę.
apt install drm-info

apt install jq

root@media:/opt/frigate# docker run --rm --device=/dev/dri:/dev/dri debian ls -l /dev/dri
Unable to find image 'debian:latest' locally
latest: Pulling from library/debian
fd0410a2d1ae: Pull complete 
Digest: sha256:321341744acb788e251ebd374aecc1a42d60ce65da7bd4ee9207ff6be6686a62
Status: Downloaded newer image for debian:latest
total 0
crw-rw---- 1 root video 226,   0 Jan 30 17:39 card0
crw-rw---- 1 root video 226,   1 Jan 30 17:39 card1
crw-rw---- 1 root   104 226, 128 Jan 30 17:39 renderD128

Chyba widzi.

Coś widzi, ale co jest przypisane do tego?
Musisz uzyskać podobne info

“/dev/dri/card0”: “Intel Graphics”

Sprobuj tak drm_info -j 2>/dev/null| jq 'with_entries(.value |= .driver.desc)'

Jak brakuje pakietów to doinstaluj.

sudo apt-get update
sudo apt-get install -y drm-info jq

Jak dla mnie to jest tylko ostrzeżenie, zapewne przyczyna restartu kontenera jest w innym logu.

Ale na początek widzę, że w dokumentacji Frigate odnośnie OpenVIONO mamy inny zapis niż Twój:

detectors:
  ov:
    type: openvino
    device: GPU

model:
  width: 300
  height: 300
  input_tensor: nhwc
  input_pixel_format: bgr
  path: /openvino-model/ssdlite_mobilenet_v2.xml
  labelmap_path: /openvino-model/coco_91cl_bkgr.txt

Modele są ważne, bo dla openVino stanowią kolejną warstwę prawidłowego działania.

Kolejną kwestią jest ustawienie dla akceleracji sprzętowej FFmpeg i idąc za dokumentacją mamy taką tabelę:

Ale nie przedstawiasz całej konfiguracji Frigate i nie wiem co tam ustawiłeś?
Ja bym spróbował z:

ffmpeg:
  hwaccel_args: preset-vaapi

A dla detectors tak:

detectors:
  ov:
    type: openvino
    device: AUTO
    model:
      path: /openvino-model/ssdlite_mobilenet_v2.xml

Oraz koniecznie dodać:

model:
  width: 300
  height: 300
  input_tensor: nhwc
  input_pixel_format: bgr
  labelmap_path: /openvino-model/coco_91cl_bkgr.txt

Tu przykład, na którym, o ile mnie pamięć nie myli, wzorowałem się w testach:

Home Assistant integrated Intel Mini PC with OpenVino

  • Single camera with 720p, 5fps stream for detect
  • MQTT connected to same mqtt server as home assistant
  • VAAPI hardware acceleration for decoding video
  • OpenVino detector
  • Save all video with any detectable motion for 7 days regardless of whether any objects were detected or not
  • Continue to keep all video if it was during any event for 30 days
  • Save snapshots for 30 days
  • Motion mask for the camera timestamp
    Frigate Configuration | Frigate
mqtt:
  host: 192.168.X.X # <---- same mqtt broker that home assistant uses
  user: mqtt-user
  password: xxxxxxxxxx

ffmpeg:
  hwaccel_args: preset-vaapi

detectors:
  ov:
    type: openvino
    device: AUTO
    model:
      path: /openvino-model/ssdlite_mobilenet_v2.xml

model:
  width: 300
  height: 300
  input_tensor: nhwc
  input_pixel_format: bgr
  labelmap_path: /openvino-model/coco_91cl_bkgr.txt

record:
  enabled: True
  retain:
    days: 7
    mode: motion
  events:
    retain:
      default: 30
      mode: motion

snapshots:
  enabled: True
  retain:
    default: 30

cameras:
  name_of_your_camera:
    detect:
      width: 1280
      height: 720
      fps: 5
    ffmpeg:
      inputs:
        - path: rtsp://10.0.10.10:554/rtsp
          roles:
            - detect
    motion:
      mask:
        - 0.000,0.427,0.002,0.000,0.999,0.000,0.999,0.781,0.885,0.456,0.700,0.424,0.701,0.311,0.507,0.294,0.453,0.347,0.451,0.400
root@media:/opt/frigate# drm_info -j 2>/dev/null| jq 'with_entries(.value |= .driver.desc)'
{
  "/dev/dri/card1": "Intel Graphics",
  "/dev/dri/card0": "bochs dispi vga interface (qemu stdvga)"
}
root@media:/opt/frigate# 

Czyli masz już pewność ze ta część konfiguracji jest OK. teraz czytaj to co napisał @angler

root@media:/opt/frigate# docker logs -f frigate
s6-rc: info: service s6rc-fdholder: starting
s6-rc: info: service s6rc-oneshot-runner: starting
s6-rc: info: service s6rc-oneshot-runner successfully started
s6-rc: info: service fix-attrs: starting
s6-rc: info: service s6rc-fdholder successfully started
s6-rc: info: service fix-attrs successfully started
s6-rc: info: service legacy-cont-init: starting
s6-rc: info: service legacy-cont-init successfully started
s6-rc: info: service log-prepare: starting
s6-rc: info: service log-prepare successfully started
s6-rc: info: service nginx-log: starting
s6-rc: info: service go2rtc-log: starting
s6-rc: info: service frigate-log: starting
s6-rc: info: service certsync-log: starting
s6-rc: info: service go2rtc-log successfully started
s6-rc: info: service go2rtc: starting
s6-rc: info: service nginx-log successfully started
s6-rc: info: service frigate-log successfully started
s6-rc: info: service certsync-log successfully started
s6-rc: info: service go2rtc successfully started
s6-rc: info: service go2rtc-healthcheck: starting
s6-rc: info: service frigate: starting
s6-rc: info: service frigate successfully started
s6-rc: info: service nginx: starting
s6-rc: info: service go2rtc-healthcheck successfully started
2025-01-30 18:01:57.714886778  [INFO] Preparing Frigate...
2025-01-30 18:01:57.724845449  [INFO] Starting NGINX...
2025-01-30 18:01:57.726804871  [INFO] Preparing new go2rtc config...
2025-01-30 18:01:57.746142562  [INFO] No TLS certificate found. Generating a self signed certificate...
2025-01-30 18:01:57.749578321  [INFO] Starting Frigate...
2025-01-30 18:01:58.739696769  [INFO] Starting go2rtc...
2025-01-30 18:01:59.046718934  18:01:59.044 INF go2rtc platform=linux/amd64 revision=b2399f3 version=1.9.2
2025-01-30 18:01:59.046726452  18:01:59.044 INF config path=/dev/shm/go2rtc.yaml
2025-01-30 18:01:59.046729398  18:01:59.045 INF [rtsp] listen addr=:8554
2025-01-30 18:01:59.046732200  18:01:59.045 INF [webrtc] listen addr=:8555/tcp
2025-01-30 18:01:59.047871091  18:01:59.047 INF [api] listen addr=:1984
s6-rc: info: service nginx successfully started
s6-rc: info: service certsync: starting
s6-rc: info: service certsync successfully started
s6-rc: info: service legacy-services: starting
2025-01-30 18:02:00.164588223  [INFO] Starting certsync...
s6-rc: info: service legacy-services successfully started
2025-01-30 18:02:00.590409003  127.0.0.1 - - [30/Jan/2025:18:02:00 +0000] "" 400 0 "-" "-" "-"
2025-01-30 18:02:01.624430983  2025/01/30 18:02:01 [error] 167#167: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.10.150, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "192.168.10.151:5000"
2025-01-30 18:02:01.624442832  2025/01/30 18:02:01 [error] 167#167: *2 auth request unexpected status: 502 while sending to client, client: 192.168.10.150, server: , request: "GET /api/stats HTTP/1.1", host: "192.168.10.151:5000"
2025-01-30 18:02:02.007684419  2025/01/30 18:02:02 [error] 168#168: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.10.11, server: , request: "GET /ws HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "192.168.10.151:5000"
2025-01-30 18:02:02.007693907  2025/01/30 18:02:02 [error] 168#168: *4 auth request unexpected status: 502 while sending to client, client: 192.168.10.11, server: , request: "GET /ws HTTP/1.1", host: "192.168.10.151:5000"
2025-01-30 18:02:02.007697115  192.168.10.11 - - [30/Jan/2025:18:02:02 +0000] "GET /ws HTTP/1.1" 500 177 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
2025-01-30 18:02:02.468175799  [2025-01-30 18:02:02] frigate.app                    INFO    : Starting Frigate (0.14.1-f4f3cfa)
2025-01-30 18:02:02.469445660  [2025-01-30 18:02:02] frigate.app                    INFO    : Creating directory: /tmp/cache
2025-01-30 18:02:02.469453163  [2025-01-30 18:02:02] frigate.util.config            INFO    : Checking if frigate config needs migration...
2025-01-30 18:02:02.516736298  [2025-01-30 18:02:02] frigate.util.config            INFO    : copying config as backup...
2025-01-30 18:02:02.517391634  [2025-01-30 18:02:02] frigate.util.config            INFO    : Migrating frigate config from 0.13 to 0.14...
2025-01-30 18:02:02.526064311  [2025-01-30 18:02:02] frigate.util.config            INFO    : Migrating export file names...
2025-01-30 18:02:02.532801332  [2025-01-30 18:02:02] frigate.util.config            INFO    : Finished frigate config migration...
2025-01-30 18:02:02.581266807  [2025-01-30 18:02:02] frigate.config                 WARNING : Customizing more than a detector model path is unsupported.
2025-01-30 18:02:02.619454998  [2025-01-30 18:02:02] peewee_migrate.logs            INFO    : Starting migrations
2025-01-30 18:02:02.624608869  [2025-01-30 18:02:02] peewee_migrate.logs            INFO    : There is nothing to migrate
2025-01-30 18:02:02.641265462  [2025-01-30 18:02:02] frigate.app                    INFO    : Recording process started: 267
2025-01-30 18:02:02.656841447  [2025-01-30 18:02:02] frigate.app                    INFO    : Recording process started: 268
2025-01-30 18:02:02.668723076  [2025-01-30 18:02:02] frigate.app                    INFO    : go2rtc process pid: 104
2025-01-30 18:02:02.766586926  [2025-01-30 18:02:02] detector.ov                    INFO    : Starting detection process: 295
2025-01-30 18:02:02.768089959  [2025-01-30 18:02:02] frigate.detectors.plugins.openvino WARNING : OpenVINO AUTO device type is not currently supported. Attempting to use GPU instead.
2025-01-30 18:02:02.778161503  [2025-01-30 18:02:02] frigate.app                    INFO    : Output process started: 297
2025-01-30 18:02:02.934275958  [2025-01-30 18:02:02] frigate.app                    INFO    : Camera processor started for name_of_your_camera: 317
2025-01-30 18:02:02.995873486  [2025-01-30 18:02:02] frigate.app                    INFO    : Capture process started for name_of_your_camera: 324
2025-01-30 18:02:03.098884535  Abort was called at 349 line in file:
2025-01-30 18:02:03.098892790  ./shared/source/os_interface/linux/drm_neo.cpp
2025-01-30 18:02:03.099415973  Fatal Python error: Aborted
2025-01-30 18:02:03.099422420  
2025-01-30 18:02:03.099739046  Thread 0x00007ff7c6ffd6c0 (most recent call first):
2025-01-30 18:02:03.101037256    File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-01-30 18:02:03.102869443    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-01-30 18:02:03.102875589    File "/usr/lib/python3.9/threading.py", line 892 in run
2025-01-30 18:02:03.102878136    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-01-30 18:02:03.102880378    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-01-30 18:02:03.102889905  
2025-01-30 18:02:03.102892160  Current thread 0x00007ff7ff51c740 (most recent call first):
2025-01-30 18:02:03.102952336    File "/usr/local/lib/python3.9/dist-packages/openvino/runtime/ie_api.py", line 521 in compile_model
2025-01-30 18:02:03.103666213    File "/opt/frigate/frigate/detectors/plugins/openvino.py", line 43 in __init__
2025-01-30 18:02:03.105300875    File "/opt/frigate/frigate/detectors/__init__.py", line 18 in create_detector
2025-01-30 18:02:03.109582594    File "/opt/frigate/frigate/object_detection.py", line 53 in __init__
2025-01-30 18:02:03.109589234    File "/opt/frigate/frigate/object_detection.py", line 102 in run_detector
2025-01-30 18:02:03.109591711    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-01-30 18:02:03.109594154    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-01-30 18:02:03.109596481    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-01-30 18:02:03.109598757    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-01-30 18:02:03.109601081    File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-01-30 18:02:03.109604945    File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-01-30 18:02:03.109607312    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-01-30 18:02:03.109609727    File "/opt/frigate/frigate/object_detection.py", line 183 in start_or_restart
2025-01-30 18:02:03.109692963    File "/opt/frigate/frigate/object_detection.py", line 151 in __init__
2025-01-30 18:02:03.109695775    File "/opt/frigate/frigate/app.py", line 429 in start_detectors
2025-01-30 18:02:03.109734071    File "/opt/frigate/frigate/app.py", line 690 in start
2025-01-30 18:02:03.109736729    File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2025-01-30 18:02:03.109739198    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2025-01-30 18:02:03.109741579    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2025-01-30 18:02:05.463921334  [2025-01-30 18:02:05] frigate.video                  ERROR   : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-01-30 18:02:05.464422242  [2025-01-30 18:02:05] frigate.video                  ERROR   : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-01-30 18:02:06.703564219  [2025-01-30 18:02:06] frigate.util.services          ERROR   : Unable to poll intel GPU stats: intel_gpu_top: ../tools/intel_gpu_top.c:1932: init_engine_classes: Assertion `max >= 0' failed.
2025-01-30 18:02:06.703570883  timeout: the monitored command dumped core
2025-01-30 18:02:06.703572010  
2025-01-30 18:02:07.728435791  [INFO] Starting go2rtc healthcheck service...
2025-01-30 18:02:23.113693947  [2025-01-30 18:02:23] watchdog.name_of_your_camera   ERROR   : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-01-30 18:02:23.113698169  [2025-01-30 18:02:23] watchdog.name_of_your_camera   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2025-01-30 18:02:23.113699665  [2025-01-30 18:02:23] ffmpeg.name_of_your_camera.detect ERROR   : [AVHWDeviceContext @ 0x55b6a4c7e3c0] libva: /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so init failed
2025-01-30 18:02:23.113700977  [2025-01-30 18:02:23] ffmpeg.name_of_your_camera.detect ERROR   : [AVHWDeviceContext @ 0x55b6a4c7e3c0] Failed to initialise VAAPI connection: 1 (operation failed).
2025-01-30 18:02:23.113702014  [2025-01-30 18:02:23] ffmpeg.name_of_your_camera.detect ERROR   : Device creation failed: -5.
2025-01-30 18:02:23.113703217  [2025-01-30 18:02:23] ffmpeg.name_of_your_camera.detect ERROR   : [h264 @ 0x55b6a4bfbf00] No device available for decoder: device type vaapi needed for codec h264.
2025-01-30 18:02:23.113704271  [2025-01-30 18:02:23] ffmpeg.name_of_your_camera.detect ERROR   : Device setup failed for decoder on input stream #0:0 : Input/output error
2025-01-30 18:02:23.439820175  [2025-01-30 18:02:23] frigate.watchdog               INFO    : Detection appears to have stopped. Exiting Frigate...
s6-rc: info: service legacy-services: stopping
s6-rc: info: service legacy-services successfully stopped
s6-rc: info: service go2rtc-healthcheck: stopping
s6-rc: info: service certsync: stopping
2025-01-30 18:02:23.453969123  [INFO] The go2rtc-healthcheck service exited with code 256 (by signal 15)
s6-rc: info: service go2rtc-healthcheck successfully stopped
2025-01-30 18:02:23.455892203  [INFO] Service CERTSYNC exited with code 256 (by signal 15)
s6-rc: info: service certsync successfully stopped
s6-rc: info: service nginx: stopping
s6-rc: info: service certsync-log: stopping
s6-rc: info: service certsync-log successfully stopped
2025-01-30 18:02:23.496838587  [INFO] Service NGINX exited with code 0 (by signal 0)
s6-rc: info: service nginx successfully stopped
s6-rc: info: service nginx-log: stopping
s6-rc: info: service frigate: stopping
s6-rc: info: service nginx-log successfully stopped
2025-01-30 18:02:23.501776049  [2025-01-30 18:02:23] frigate.app                    INFO    : Flask has exited...
2025-01-30 18:02:23.502373331  [2025-01-30 18:02:23] frigate.app                    INFO    : Stopping...
2025-01-30 18:02:23.502376902  [2025-01-30 18:02:23] frigate.storage                INFO    : Exiting storage maintainer...
2025-01-30 18:02:23.503412742  [2025-01-30 18:02:23] frigate.stats.emitter          INFO    : Exiting stats emitter...
2025-01-30 18:02:23.503696557  [2025-01-30 18:02:23] frigate.watchdog               INFO    : Exiting watchdog...
2025-01-30 18:02:23.504523903  [2025-01-30 18:02:23] frigate.events.cleanup         INFO    : Exiting event cleanup...
2025-01-30 18:02:23.505431588  [2025-01-30 18:02:23] frigate.record.cleanup         INFO    : Exiting recording cleanup...
2025-01-30 18:02:23.505434496  [2025-01-30 18:02:23] frigate.ptz.autotrack          INFO    : Exiting autotracker...
2025-01-30 18:02:23.505942194  [2025-01-30 18:02:23] frigate.app                    INFO    : Waiting for capture process for name_of_your_camera to stop
2025-01-30 18:02:23.507500410  [2025-01-30 18:02:23] watchdog.name_of_your_camera   INFO    : Terminating the existing ffmpeg process...
2025-01-30 18:02:23.507504581  [2025-01-30 18:02:23] watchdog.name_of_your_camera   INFO    : Waiting for ffmpeg to exit gracefully...
2025-01-30 18:02:23.523254560  [2025-01-30 18:02:23] frigate.app                    INFO    : Waiting for process for name_of_your_camera to stop
2025-01-30 18:02:23.886420252  [2025-01-30 18:02:23] frigate.object_processing      INFO    : Exiting object processor...
2025-01-30 18:02:24.092684367  [2025-01-30 18:02:24] frigate.video                  INFO    : name_of_your_camera: emptying frame queue
2025-01-30 18:02:24.093296469  [2025-01-30 18:02:24] frigate.video                  INFO    : name_of_your_camera: exiting subprocess
2025-01-30 18:02:24.098347692  [2025-01-30 18:02:24] frigate.app                    INFO    : Closing frame queue for name_of_your_camera
2025-01-30 18:02:24.443889829  [2025-01-30 18:02:24] frigate.events.maintainer      INFO    : Exiting event processor...
2025-01-30 18:02:25.100123950  [2025-01-30 18:02:25] frigate.app                    INFO    : Detection queue closed
2025-01-30 18:02:25.600958837  [2025-01-30 18:02:25] frigate.app                    INFO    : Detected frames queue closed
2025-01-30 18:02:26.102050377  [2025-01-30 18:02:26] frigate.app                    INFO    : Timeline queue closed
2025-01-30 18:02:27.486232587  [2025-01-30 18:02:27] frigate.output.output          INFO    : exiting output process...
2025-01-30 18:02:27.853276332  [2025-01-30 18:02:27] frigate.review.maintainer      INFO    : Exiting review maintainer...
2025-01-30 18:02:28.871043087  /usr/lib/python3.9/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 1 leaked shared_memory objects to clean up at shutdown
2025-01-30 18:02:28.871046869    warnings.warn('resource_tracker: There appear to be %d '
2025-01-30 18:02:28.875376790  [INFO] Service Frigate exited with code 0 (by signal 0)
s6-rc: info: service frigate successfully stopped
s6-rc: info: service go2rtc: stopping
s6-rc: info: service frigate-log: stopping
2025-01-30 18:02:28.879466227  exit with signal: terminated
s6-rc: info: service frigate-log successfully stopped
2025-01-30 18:02:28.884040717  [INFO] The go2rtc service exited with code 0 (by signal 0)
s6-rc: info: service go2rtc successfully stopped
s6-rc: info: service go2rtc-log: stopping
s6-rc: info: service go2rtc-log successfully stopped
s6-rc: info: service log-prepare: stopping
s6-rc: info: service s6rc-fdholder: stopping
s6-rc: info: service log-prepare successfully stopped
s6-rc: info: service legacy-cont-init: stopping
s6-rc: info: service s6rc-fdholder successfully stopped
s6-rc: info: service legacy-cont-init successfully stopped
s6-rc: info: service fix-attrs: stopping
s6-rc: info: service fix-attrs successfully stopped
s6-rc: info: service s6rc-oneshot-runner: stopping
s6-rc: info: service s6rc-oneshot-runner successfully stopped
root@media:/opt/frigate# vi config/config.yml
root@media:/opt/frigate# 

pełny log ze zmienionym config na taki:

mqtt:
  enabled: False

ffmpeg:
  hwaccel_args: preset-vaapi

detectors:
  ov:
    type: openvino
    device: AUTO
    model:
      path: /openvino-model/ssdlite_mobilenet_v2.xml

model:
  width: 300
  height: 300
  input_tensor: nhwc
  input_pixel_format: bgr
  labelmap_path: /openvino-model/coco_91cl_bkgr.txt

record:
  enabled: True
  retain:
    days: 7
    mode: motion
  events:
    retain:
      default: 30
      mode: motion

snapshots:
  enabled: True
  retain:
    default: 30

cameras:
  name_of_your_camera:
    detect:
      width: 1280
      height: 720
      fps: 5
    ffmpeg:
      inputs:
        - path: rtsp://192.168.10.115
          roles:
            - detect
    motion:
      mask:
        - 0.000,0.427,0.002,0.000,0.999,0.000,0.999,0.781,0.885,0.456,0.700,0.424,0.701,0.311,0.507,0.294,0.453,0.347,0.451,0.400
2025-01-30 18:19:58.395452565  [INFO] Preparing Frigate...
2025-01-30 18:19:58.423554958  [INFO] Starting Frigate...
2025-01-30 18:20:02.219635223  [2025-01-30 18:20:02] frigate.app                    INFO    : Starting Frigate (0.14.1-f4f3cfa)
2025-01-30 18:20:02.220298732  [2025-01-30 18:20:02] frigate.util.config            INFO    : Checking if frigate config needs migration...
2025-01-30 18:20:02.238462374  [2025-01-30 18:20:02] frigate.util.config            INFO    : frigate config does not need migration...
2025-01-30 18:20:02.288923227  [2025-01-30 18:20:02] frigate.config                 WARNING : Customizing more than a detector model path is unsupported.
2025-01-30 18:20:02.313873041  [2025-01-30 18:20:02] peewee_migrate.logs            INFO    : Starting migrations
2025-01-30 18:20:02.316189993  [2025-01-30 18:20:02] peewee_migrate.logs            INFO    : There is nothing to migrate
2025-01-30 18:20:02.336140672  [2025-01-30 18:20:02] frigate.app                    INFO    : Recording process started: 269
2025-01-30 18:20:02.366147268  [2025-01-30 18:20:02] frigate.app                    INFO    : Recording process started: 271
2025-01-30 18:20:02.385179271  [2025-01-30 18:20:02] frigate.app                    INFO    : go2rtc process pid: 101
2025-01-30 18:20:02.488649601  [2025-01-30 18:20:02] frigate.app                    INFO    : Output process started: 299
2025-01-30 18:19:27.035866431  [2025-01-30 18:19:27] detector.ov                    INFO    : Starting detection process: 295
2025-01-30 18:19:27.037329915  [2025-01-30 18:19:27] frigate.detectors.plugins.openvino WARNING : OpenVINO AUTO device type is not currently supported. Attempting to use GPU instead.
2025-01-30 18:19:27.096379974  [2025-01-30 18:19:27] frigate.app                    INFO    : Camera processor started for name_of_your_camera: 317
2025-01-30 18:19:27.121369683  Abort was called at 349 line in file:
2025-01-30 18:19:27.121377558  ./shared/source/os_interface/linux/drm_neo.cpp
2025-01-30 18:19:27.133043123  Fatal Python error: Aborted
2025-01-30 18:19:45.210392  2025-01-30 18:19:27.133049679
2025-01-30 18:19:27.133566479  Thread 0x00007f4418ff96c0 (most recent call first):
2025-01-30 18:19:27.134528227    File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-01-30 18:19:27.135990164    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-01-30 18:19:27.137140255    File "/usr/lib/python3.9/threading.py", line 892 in run
2025-01-30 18:19:27.143298108    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-01-30 18:19:27.144442462    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-01-30 18:19:45.210422  2025-01-30 18:19:27.144789903
2025-01-30 18:19:27.145128630  Current thread 0x00007f44412f9740 (most recent call first):
2025-01-30 18:19:27.147686451    File "/usr/local/lib/python3.9/dist-packages/openvino/runtime/[2025-01-30 18:19:27] frigate.app                    INFO    : Capture process started for name_of_your_camera: 324
2025-01-30 18:19:27.148915935  ie_api.py", line 521 in compile_model
2025-01-30 18:19:27.151553631    File "/opt/frigate/frigate/detectors/plugins/openvino.py", line 43 in __init__
2025-01-30 18:19:27.152714240    File "/opt/frigate/frigate/detectors/__init__.py", line 18 in create_detector
2025-01-30 18:19:27.153714885    File "/opt/frigate/frigate/object_detection.py", line 53 in __init__
2025-01-30 18:19:27.154745161    File "/opt/frigate/frigate/object_detection.py", line 102 in run_detector
2025-01-30 18:19:27.155724247    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-01-30 18:19:27.156951188    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-01-30 18:19:27.158114877    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-01-30 18:19:27.158820356    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-01-30 18:19:27.163971142    File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-01-30 18:19:27.163978065    File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-01-30 18:19:27.163979745    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-01-30 18:19:27.163986634    File "/opt/frigate/frigate/object_detection.py", line 183 in start_or_restart
2025-01-30 18:19:27.163988640    File "/opt/frigate/frigate/object_detection.py", line 151 in __init__
2025-01-30 18:19:27.163991257    File "/opt/frigate/frigate/app.py", line 429 in start_detectors
2025-01-30 18:19:27.164025410    File "/opt/frigate/frigate/app.py", line 690 in start
2025-01-30 18:19:27.164027166    File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2025-01-30 18:19:27.164028562    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2025-01-30 18:19:27.164072408    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2025-01-30 18:19:29.519077390  [2025-01-30 18:19:29] frigate.video                  ERROR   : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-01-30 18:19:29.520196111  [2025-01-30 18:19:29] frigate.video                  ERROR   : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-01-30 18:19:31.686671644  [2025-01-30 18:19:31] frigate.util.services          ERROR   : Unable to poll intel GPU stats: intel_gpu_top: ../tools/intel_gpu_top.c:1932: init_engine_classes: Assertion `max >= 0' failed.
2025-01-30 18:19:31.686676776  timeout: the monitored command dumped core
2025-01-30 18:19:45.210433  2025-01-30 18:19:31.686677732

Czytam twój docker-compose.yml, porónuję z oficjalną dokumentacją instalacji pod Docker i nie widzę abyś mapował w nim porty. Porównaj sobie z dokumentacją i spróbuj podążyć za nią mapując port 5000 (domyślnie za-komentowany) gdyż czytam:

  # - "5000:5000" # Internal unauthenticated access. Expose carefully.

A logi powyżej wskazują na problem z uwierzytelnianiem.

version: "3.9"
services:
  frigate:
    container_name: frigate
    restart: unless-stopped
    privileged: true 
    network_mode: host 
    image: ghcr.io/blakeblackshear/frigate:stable 
    shm_size: "256mb" 
    devices: 
      - /dev/dri/renderD128:/dev/dri/renderD128  # VAAPI 
    volumes: 
      - /etc/localtime:/etc/localtime:ro 
      - /opt/frigate/config:/config 
      - /opt/frigate/media:/media/frigate 
    environment: 
      FRIGATE_HWACCEL_ARGS: "openvino"  # Aktywacja OpenVINO 
      LIBVA_DRIVER_NAME: "iHD"  # Sterownik Intel dla VAAPI 
      LIBVA_PLUGIN_NAME: "openvino"  # OpenVINO 
    ports: 
      - "5000:5000"  # Frigate UI 
      - "1937:1937"  # RTMP

mam tak, a wyżej po prostu to obcięło

Testuję najnowszą wersję i rozwój Frigate jest szybki, dlatego ponownie muszę wrócić do dokumentacji i czytać, czytać…

EDIT:
Dla testów dopisałem:

auth:
  enabled: False

Kontener na lapku z Linux Mint (i5-8250U) z takim testowym compose.yaml

version: "3.9"
services:
  frigate:
    #    runtime: nvidia
    #    environment:
    #      - NVIDIA_VISIBLE_DEVICES=all
    #      - NVIDIA_DRIVER_CAPABILITIES=compute,utility,video
    container_name: frigate_new
    privileged: true # this may not be necessary for all setups
    restart: unless-stopped
    image: ghcr.io/blakeblackshear/frigate:stable
    #    image: blakeblackshear/frigate:stable-amd64
    #    image: blakeblackshear/frigate:stable-amd64nvidia
    shm_size: 256mb # update for your cameras based on calculation above
    devices:
      - /dev/dri/renderD128:/dev/dri/renderD128 # for intel hwaccel, needs to be updated for your hardware  
      #      - /dev/bus/usb:/dev/bus/usb # passes the USB Coral, needs to be modified for other versions
      #      - /dev/apex_0:/dev/apex_0 # passes a PCIe Coral, follow driver instructions here https://coral.ai/docs/m2/get-started/#2a-on-linux 
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /opt/frigate/config/:/config/
      - /home/cezary/Wideo/frigate:/media/frigate
      - type: tmpfs
        target: /tmp/cache
        tmpfs:
          size: 3000000000
    ports:
      - 5000:5000
      - 1935:1935 # RTMP feeds
      - 8554:8554 # RTSP feeds
      - 8555:8555/tcp # WebRTC over tcp
      - 8555:8555/udp # WebRTC over udp
    environment:
      FRIGATE_RTSP_PASSWORD: "321"
networks: {}

Działa… trzy kamery.


dałem tak:

version: "3.9"
services:
  frigate:
    container_name: frigate
    privileged: true # this may not be necessary for all setups
    restart: unless-stopped
    image: ghcr.io/blakeblackshear/frigate:stable
    shm_size: "64mb" # update for your cameras based on calculation above
    devices:
      - /dev/dri/renderD128:/dev/dri/renderD128 # For intel hwaccel, needs to be updated for your hardware
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /opt/frigate/config:/config
      - /opt/frigate/media:/media/frigate
      - 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: "password"

I dalej jest bez zmian, ciągle się zatrzymuje:

root@media:/opt/frigate# docker logs -f frigate
s6-rc: info: service s6rc-fdholder: starting
s6-rc: info: service s6rc-oneshot-runner: starting
s6-rc: info: service s6rc-oneshot-runner successfully started
s6-rc: info: service fix-attrs: starting
s6-rc: info: service s6rc-fdholder successfully started
s6-rc: info: service fix-attrs successfully started
s6-rc: info: service legacy-cont-init: starting
s6-rc: info: service legacy-cont-init successfully started
s6-rc: info: service log-prepare: starting
s6-rc: info: service log-prepare successfully started
s6-rc: info: service nginx-log: starting
s6-rc: info: service go2rtc-log: starting
s6-rc: info: service frigate-log: starting
s6-rc: info: service certsync-log: starting
s6-rc: info: service nginx-log successfully started
s6-rc: info: service go2rtc-log successfully started
s6-rc: info: service go2rtc: starting
s6-rc: info: service frigate-log successfully started
s6-rc: info: service certsync-log successfully started
s6-rc: info: service go2rtc successfully started
s6-rc: info: service go2rtc-healthcheck: starting
s6-rc: info: service frigate: starting
s6-rc: info: service go2rtc-healthcheck successfully started
s6-rc: info: service frigate successfully started
s6-rc: info: service nginx: starting
2025-01-30 19:08:11.860724319  [INFO] Preparing new go2rtc config...
2025-01-30 19:08:11.864623443  [INFO] Preparing Frigate...
2025-01-30 19:08:11.881769423  [INFO] Starting NGINX...
2025-01-30 19:08:11.930433851  [INFO] No TLS certificate found. Generating a self signed certificate...
2025-01-30 19:08:11.934836595  [INFO] Starting Frigate...
2025-01-30 19:08:13.210848184  [INFO] Starting go2rtc...
2025-01-30 19:08:13.491236577  19:08:13.491 INF go2rtc platform=linux/amd64 revision=b2399f3 version=1.9.2
2025-01-30 19:08:13.494174279  19:08:13.491 INF config path=/dev/shm/go2rtc.yaml
2025-01-30 19:08:13.494182266  19:08:13.492 INF [rtsp] listen addr=:8554
2025-01-30 19:08:13.494191097  19:08:13.492 INF [webrtc] listen addr=:8555/tcp
2025-01-30 19:08:13.495129684  19:08:13.494 INF [api] listen addr=:1984
s6-rc: info: service nginx successfully started
s6-rc: info: service certsync: starting
s6-rc: info: service certsync successfully started
s6-rc: info: service legacy-services: starting
2025-01-30 19:08:13.903136695  [INFO] Starting certsync...
s6-rc: info: service legacy-services successfully started
2025-01-30 19:08:14.122617107  127.0.0.1 - - [30/Jan/2025:19:08:14 +0000] "" 400 0 "-" "-" "-"
2025-01-30 19:08:15.587227291  [2025-01-30 19:08:15] frigate.app                    INFO    : Starting Frigate (0.14.1-f4f3cfa)
2025-01-30 19:08:15.592171609  [2025-01-30 19:08:15] frigate.util.config            INFO    : Checking if frigate config needs migration...
2025-01-30 19:08:15.604665259  [2025-01-30 19:08:15] frigate.util.config            INFO    : frigate config does not need migration...
2025-01-30 19:08:15.644561163  [2025-01-30 19:08:15] frigate.config                 WARNING : Customizing more than a detector model path is unsupported.
2025-01-30 19:08:15.668035875  [2025-01-30 19:08:15] peewee_migrate.logs            INFO    : Starting migrations
2025-01-30 19:08:15.669046945  [2025-01-30 19:08:15] peewee_migrate.logs            INFO    : There is nothing to migrate
2025-01-30 19:08:15.678994944  [2025-01-30 19:08:15] frigate.app                    INFO    : Recording process started: 267
2025-01-30 19:08:15.691330610  [2025-01-30 19:08:15] frigate.app                    INFO    : Recording process started: 268
2025-01-30 19:08:15.698473856  [2025-01-30 19:08:15] frigate.app                    INFO    : go2rtc process pid: 103
2025-01-30 19:08:15.768179047  [2025-01-30 19:08:15] frigate.app                    INFO    : Output process started: 297
2025-01-30 19:08:15.787103715  [2025-01-30 19:08:15] detector.ov                    INFO    : Starting detection process: 296
2025-01-30 19:08:15.788590210  [2025-01-30 19:08:15] frigate.detectors.plugins.openvino WARNING : OpenVINO AUTO device type is not currently supported. Attempting to use GPU instead.
2025-01-30 19:08:15.830967731  [2025-01-30 19:08:15] frigate.app                    INFO    : Camera processor started for name_of_your_camera: 313
2025-01-30 19:08:15.852586465  Abort was called at 349 line in file:
2025-01-30 19:08:15.852593380  ./shared/source/os_interface/linux/drm_neo.cpp
2025-01-30 19:08:15.853025550  Fatal Python error: Aborted
2025-01-30 19:08:15.853031648  
2025-01-30 19:08:15.853241481  Thread 0x00007f73ceffd6c0 (most recent call first):
2025-01-30 19:08:15.853929567    File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-01-30 19:08:15.855045173    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-01-30 19:08:15.855796128    File "/usr/lib/python3.9/threading.py", line 892 in run
2025-01-30 19:08:15.856828862    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-01-30 19:08:15.860101487    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-01-30 19:08:15.860395853  
2025-01-30 19:08:15.860548634  Current thread 0x00007f7407378740 (most recent call first):
2025-01-30 19:08:15.862614089    File "/usr/local/lib/python3.9/dist-packages/openvino/runtime/ie_api.py", line 521 in compile_model
2025-01-30 19:08:15.871310282    File "/opt/frigate/frigate/detectors/plugins/openvino.py", line 43 in __init__
2025-01-30 19:08:15.872766776    File "/opt/frigate/frigate/detectors/__init__.py", line 18 in create_detector
2025-01-30 19:08:15.883042508    File "/opt/frigate/frigate/object_detection.py", line 53 in __init__
2025-01-30 19:08:15.884148337    File "/opt/frigate/frigate/object_detection.py", line 102 in run_detector
2025-01-30 19:08:15.887080260    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-01-30 19:08:15.888237534    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-01-30 19:08:15.889469871    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-01-30 19:08:15.890629561    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-01-30 19:08:15.892119108    File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-01-30 19:08:15.892123942    File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-01-30 19:08:15.892125665    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-01-30 19:08:15.892133249    File "/opt/frigate/frigate/object_detection.py", line 183 in start_or_restart
2025-01-30 19:08:15.892135549    File "/opt/frigate/frigate/object_detection.py", line 151 in __init__
2025-01-30 19:08:15.892138369    File "/opt/frigate/frigate/app.py", line 429 in start_detectors
2025-01-30 19:08:15.892189016    File "/opt/frigate/frigate/app.py", line 690 in start
2025-01-30 19:08:15.892191315    File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2025-01-30 19:08:15.892192766    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2025-01-30 19:08:15.892243001    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2025-01-30 19:08:15.896775703  [2025-01-30 19:08:15] frigate.app                    INFO    : Capture process started for name_of_your_camera: 317
2025-01-30 19:08:18.446813748  [2025-01-30 19:08:18] frigate.video                  ERROR   : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-01-30 19:08:18.447296675  [2025-01-30 19:08:18] frigate.video                  ERROR   : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-01-30 19:08:21.855626314  [INFO] Starting go2rtc healthcheck service...
2025-01-30 19:08:36.004021928  [2025-01-30 19:08:36] watchdog.name_of_your_camera   ERROR   : Ffmpeg process crashed unexpectedly for name_of_your_camera.
2025-01-30 19:08:36.004297795  [2025-01-30 19:08:36] watchdog.name_of_your_camera   ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2025-01-30 19:08:36.004300477  [2025-01-30 19:08:36] ffmpeg.name_of_your_camera.detect ERROR   : [AVHWDeviceContext @ 0x55ac583b7740] libva: /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so init failed
2025-01-30 19:08:36.004301787  [2025-01-30 19:08:36] ffmpeg.name_of_your_camera.detect ERROR   : [AVHWDeviceContext @ 0x55ac583b7740] libva: /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so init failed
2025-01-30 19:08:36.004302975  [2025-01-30 19:08:36] ffmpeg.name_of_your_camera.detect ERROR   : [AVHWDeviceContext @ 0x55ac583b7740] Failed to initialise VAAPI connection: -1 (unknown libva error).
2025-01-30 19:08:36.004456705  [2025-01-30 19:08:36] ffmpeg.name_of_your_camera.detect ERROR   : Device creation failed: -5.
2025-01-30 19:08:36.004459177  [2025-01-30 19:08:36] ffmpeg.name_of_your_camera.detect ERROR   : [h264 @ 0x55ac583b4a00] No device available for decoder: device type vaapi needed for codec h264.
2025-01-30 19:08:36.004460505  [2025-01-30 19:08:36] ffmpeg.name_of_your_camera.detect ERROR   : Device setup failed for decoder on input stream #0:0 : Input/output error
2025-01-30 19:08:36.203769853  [2025-01-30 19:08:36] frigate.watchdog               INFO    : Detection appears to have stopped. Exiting Frigate...
s6-rc: info: service legacy-services: stopping
s6-rc: info: service legacy-services successfully stopped
s6-rc: info: service go2rtc-healthcheck: stopping
s6-rc: info: service certsync: stopping
2025-01-30 19:08:36.213234298  [INFO] The go2rtc-healthcheck service exited with code 256 (by signal 15)
2025-01-30 19:08:36.214598198  [INFO] Service CERTSYNC exited with code 256 (by signal 15)
s6-rc: info: service go2rtc-healthcheck successfully stopped
s6-rc: info: service certsync successfully stopped
s6-rc: info: service nginx: stopping
s6-rc: info: service certsync-log: stopping
s6-rc: info: service certsync-log successfully stopped
2025-01-30 19:08:36.248678955  [INFO] Service NGINX exited with code 0 (by signal 0)
s6-rc: info: service nginx successfully stopped
s6-rc: info: service nginx-log: stopping
s6-rc: info: service frigate: stopping
2025-01-30 19:08:36.257384755  [2025-01-30 19:08:36] frigate.app                    INFO    : Flask has exited...
2025-01-30 19:08:36.257388615  [2025-01-30 19:08:36] frigate.app                    INFO    : Stopping...
s6-rc: info: service nginx-log successfully stopped
2025-01-30 19:08:36.264188371  [2025-01-30 19:08:36] frigate.watchdog               INFO    : Exiting watchdog...
2025-01-30 19:08:36.264192266  [2025-01-30 19:08:36] frigate.stats.emitter          INFO    : Exiting stats emitter...
2025-01-30 19:08:36.264193665  [2025-01-30 19:08:36] frigate.storage                INFO    : Exiting storage maintainer...
2025-01-30 19:08:36.264194896  [2025-01-30 19:08:36] frigate.events.cleanup         INFO    : Exiting event cleanup...
2025-01-30 19:08:36.264196094  [2025-01-30 19:08:36] frigate.record.cleanup         INFO    : Exiting recording cleanup...
2025-01-30 19:08:36.264197266  [2025-01-30 19:08:36] frigate.ptz.autotrack          INFO    : Exiting autotracker...
2025-01-30 19:08:36.264198420  [2025-01-30 19:08:36] watchdog.name_of_your_camera   INFO    : Terminating the existing ffmpeg process...
2025-01-30 19:08:36.264199560  [2025-01-30 19:08:36] watchdog.name_of_your_camera   INFO    : Waiting for ffmpeg to exit gracefully...
2025-01-30 19:08:36.264200743  [2025-01-30 19:08:36] frigate.app                    INFO    : Waiting for capture process for name_of_your_camera to stop
2025-01-30 19:08:36.280022724  [2025-01-30 19:08:36] frigate.app                    INFO    : Waiting for process for name_of_your_camera to stop
2025-01-30 19:08:36.833427572  [2025-01-30 19:08:36] frigate.object_processing      INFO    : Exiting object processor...
2025-01-30 19:08:36.972806938  [2025-01-30 19:08:36] frigate.video                  INFO    : name_of_your_camera: emptying frame queue
2025-01-30 19:08:36.972902121  [2025-01-30 19:08:36] frigate.video                  INFO    : name_of_your_camera: exiting subprocess
2025-01-30 19:08:36.978157742  [2025-01-30 19:08:36] frigate.app                    INFO    : Closing frame queue for name_of_your_camera
2025-01-30 19:08:37.209342666  [2025-01-30 19:08:37] frigate.events.maintainer      INFO    : Exiting event processor...
2025-01-30 19:08:37.979841613  [2025-01-30 19:08:37] frigate.app                    INFO    : Detection queue closed
2025-01-30 19:08:38.480638216  [2025-01-30 19:08:38] frigate.app                    INFO    : Detected frames queue closed
2025-01-30 19:08:38.981790796  [2025-01-30 19:08:38] frigate.app                    INFO    : Timeline queue closed
2025-01-30 19:08:40.513564389  [2025-01-30 19:08:40] frigate.output.output          INFO    : exiting output process...
2025-01-30 19:08:41.248850476  [2025-01-30 19:08:41] frigate.comms.ws               INFO    : Exiting websocket client...
2025-01-30 19:08:41.722220210  [2025-01-30 19:08:41] peewee.sqliteq                 INFO    : writer received shutdown request, exiting.
2025-01-30 19:08:42.740978037  /usr/lib/python3.9/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 1 leaked shared_memory objects to clean up at shutdown
2025-01-30 19:08:42.740982186    warnings.warn('resource_tracker: There appear to be %d '
2025-01-30 19:08:42.745891716  [INFO] Service Frigate exited with code 0 (by signal 0)
s6-rc: info: service frigate successfully stopped
s6-rc: info: service go2rtc: stopping
s6-rc: info: service frigate-log: stopping
2025-01-30 19:08:42.749207087  exit with signal: terminated
s6-rc: info: service frigate-log successfully stopped
2025-01-30 19:08:42.753985889  [INFO] The go2rtc service exited with code 0 (by signal 0)
s6-rc: info: service go2rtc successfully stopped
s6-rc: info: service go2rtc-log: stopping
s6-rc: info: service go2rtc-log successfully stopped
s6-rc: info: service log-prepare: stopping
s6-rc: info: service s6rc-fdholder: stopping
s6-rc: info: service log-prepare successfully stopped
s6-rc: info: service legacy-cont-init: stopping
s6-rc: info: service s6rc-fdholder successfully stopped
s6-rc: info: service legacy-cont-init successfully stopped
s6-rc: info: service fix-attrs: stopping
s6-rc: info: service fix-attrs successfully stopped
s6-rc: info: service s6rc-oneshot-runner: stopping
s6-rc: info: service s6rc-oneshot-runner successfully stopped
root@media:/opt/frigate#
2025-01-30 19:26:44.592145115  [INFO] Preparing Frigate...
2025-01-30 19:26:44.678302362  [INFO] Starting Frigate...
2025-01-30 19:26:48.192135925  [2025-01-30 19:26:48] frigate.app                    INFO    : Starting Frigate (0.14.1-f4f3cfa)
2025-01-30 19:26:48.193045255  [2025-01-30 19:26:48] frigate.util.config            INFO    : Checking if frigate config needs migration...
2025-01-30 19:26:48.211052108  [2025-01-30 19:26:48] frigate.util.config            INFO    : frigate config does not need migration...
2025-01-30 19:26:48.247383614  [2025-01-30 19:26:48] frigate.config                 WARNING : Customizing more than a detector model path is unsupported.
2025-01-30 19:26:48.276713693  [2025-01-30 19:26:48] peewee_migrate.logs            INFO    : Starting migrations
2025-01-30 19:26:48.279148186  [2025-01-30 19:26:48] peewee_migrate.logs            INFO    : There is nothing to migrate
2025-01-30 19:26:48.289819073  [2025-01-30 19:26:48] frigate.app                    INFO    : Recording process started: 266
2025-01-30 19:26:48.301998814  [2025-01-30 19:26:48] frigate.app                    INFO    : Recording process started: 268
2025-01-30 19:26:48.316986294  [2025-01-30 19:26:48] frigate.app                    INFO    : go2rtc process pid: 104
2025-01-30 19:26:48.377871567  [2025-01-30 19:26:48] frigate.app                    INFO    : Output process started: 295
2025-01-30 19:26:48.405293337  [2025-01-30 19:26:48] detector.ov                    INFO    : Starting detection process: 294
2025-01-30 19:26:11.578317869  [2025-01-30 19:26:11] frigate.detectors.plugins.openvino WARNING : OpenVINO AUTO device type is not currently supported. Attempting to use GPU instead.
2025-01-30 19:26:11.643659922  [2025-01-30 19:26:11] frigate.app                    INFO    : Camera processor started for name_of_your_camera: 286
2025-01-30 19:26:11.684218000  Abort was called at 349 line in file:
2025-01-30 19:26:11.684226115  ./shared/source/os_interface/linux/drm_neo.cpp
2025-01-30 19:26:11.684659186  Fatal Python error: Aborted
2025-01-30 19:26:28.817955  2025-01-30 19:26:11.684663349
2025-01-30 19:26:11.684665347  Thread 0x00007f0e1cff96c0 (most recent call first):
2025-01-30 19:26:11.684692935    File "/usr/lib/python3.9/threading.py", line 312 in wait
2025-01-30 19:26:11.684701633    File "/usr/lib/python3.9/multiprocessing/queues.py", line 233 in _feed
2025-01-30 19:26:11.684704670    File "/usr/lib/python3.9/threading.py", line 892 in run
2025-01-30 19:26:11.685119675    File "/usr/lib/python3.9/threading.py", line 954 in _bootstrap_inner
2025-01-30 19:26:11.685122888    File "/usr/lib/python3.9/threading.py", line 912 in _bootstrap
2025-01-30 19:26:28.818011  2025-01-30 19:26:11.685124592
2025-01-30 19:26:11.685126404  Current thread 0x00007f0e44f90740 (most recent call first):
2025-01-30 19:26:11.685128560    File "/usr/local/lib/python3.9/dist-packages/openvino/runtime/ie_api.py", line 521 in compile_model
2025-01-30 19:26:11.685425558    File "/opt/frigate/frigate/detectors/plugins/openvino.py", line 43 in __init__
2025-01-30 19:26:11.685428560    File "/opt/frigate/frigate/detectors/__init__.py", line 18 in create_detector
2025-01-30 19:26:11.685672665    File "/opt/frigate/frigate/object_detection.py", line 53 in __init__
2025-01-30 19:26:11.685675361    File "/opt/frigate/frigate/object_detection.py", line 102 in run_detector
2025-01-30 19:26:11.685907087    File "/usr/lib/python3.9/multiprocessing/process.py", line 108 in run
2025-01-30 19:26:11.686128359    File "/usr/lib/python3.9/multiprocessing/process.py", line 315 in _bootstrap
2025-01-30 19:26:11.686130952    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 71 in _launch
2025-01-30 19:26:11.686339644    File "/usr/lib/python3.9/multiprocessing/popen_fork.py", line 19 in __init__
2025-01-30 19:26:11.686342243    File "/usr/lib/python3.9/multiprocessing/context.py", line 277 in _Popen
2025-01-30 19:26:11.686571958    File "/usr/lib/python3.9/multiprocessing/context.py", line 224 in _Popen
2025-01-30 19:26:11.686813105    File "/usr/lib/python3.9/multiprocessing/process.py", line 121 in start
2025-01-30 19:26:11.686816928    File "/opt/frigate/frigate/object_detection.py", line 183 in start_or_restart
2025-01-30 19:26:11.698655310    File "/opt/frigate/fr[2025-01-30 19:26:11] frigate.app                    INFO    : Capture process started for name_of_your_camera: 292
2025-01-30 19:26:11.708609130  igate/object_detection.py", line 151 in __init__
2025-01-30 19:26:11.708977529    File "/opt/frigate/frigate/app.py", line 429 in start_detectors
2025-01-30 19:26:11.709148430    File "/opt/frigate/frigate/app.py", line 690 in start
2025-01-30 19:26:11.709275013    File "/opt/frigate/frigate/__main__.py", line 17 in <module>
2025-01-30 19:26:11.709463240    File "/usr/lib/python3.9/runpy.py", line 87 in _run_code
2025-01-30 19:26:11.709686535    File "/usr/lib/python3.9/runpy.py", line 197 in _run_module_as_main
2025-01-30 19:26:14.089787970  [2025-01-30 19:26:14] frigate.video                  ERROR   : name_of_your_camera: Unable to read frames from ffmpeg process.
2025-01-30 19:26:14.090825469  [2025-01-30 19:26:14] frigate.video                  ERROR   : name_of_your_camera: ffmpeg process is not running. exiting capture thread...
2025-01-30 19:26:16.693040787  [2025-01-30 19:26:16] frigate.util.services          ERROR   : Unable to poll vainfo: b"error: XDG_RUNTIME_DIR is invalid or not set in the environment.\nerror: can't connect to X server!\nlibva info: VA-API version 1.17.0\nlibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\nlibva info: Found init function __vaDriverInit_1_17\nlibva error: /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so init failed\nlibva info: va_openDriver() returns 1\nlibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so\nlibva info: Found init function __vaDriverInit_1_8\nlibva error: /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so init failed\nlibva info: va_openDriver() returns -1\nvaInitialize failed with error code -1 (unknown libva error),exit\n"
2025-01-30 19:26:16.736329643  [2025-01-30 19:26:16] frigate.util.services          ERROR   : Unable to poll intel GPU stats: intel_gpu_top: ../tools/intel_gpu_top.c:1932: init_engine_classes: Assertion `max >= 0' failed.
2025-01-30 19:26:16.736336083  timeout: the monitored command dumped core
2025-01-30 19:26:28.818026  2025-01-30 19:26:16.736337073

chyba sie poddam, bo to jednak nie na moje możliwości

Może się mylę, ale to się raczej nie uda, ten Debian nie pracuje na sprzęcie bare-metal, więc trzeba by dołożyć jeszcze jedną kartę graficzną by można było zabrać tego intela proxmoxowi.