Installation Coral USB pour Frigate sur VM HAOS

Bonjour,

Je fais tourner une VM sous Proxmox pour HA et j’ai installé l’intégration et l’addon Frigate directement dans HA.
Je suis en train d’essayer d’installer ma nouvelle clé Coral car je n’arrivais pas à faire fonctionner OpenVino sur mon mini PC HP.
J’ai cela en configuration :

mqtt:
  enabled: false
 
ffmpeg:
  hwaccel_args: preset-vaapi

detectors:
  coral:
    type: edgetpu
    device: usb
      
review:
  alerts:
    labels:
      - person
      - car
      - motorcycle
  detections:
    labels:
      - cat
      - dog
      - bird

cameras:
#Caméra entrée
  entree:
    ffmpeg:
      inputs:
        - path: rtsp://user:mdp@IP:554/Streaming/channels/101
          #input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://user:mdp@IP:554/Streaming/channels/102
          roles:
            - detect
    detect:
      enabled: true
      width: 1280
      height: 720
      fps: 10
    objects:
      track:
        - person
        - cat
        - dog
        - car
        - motorcycle
      filters:
        person:
          threshold: 0.7
          min_area: 40000
        cat:
          threshold: 0.7
          min_area: 2000
          max_area: 20000
        dog:
          threshold: 0.7
          min_area: 2000
          max_area: 20000
        car:
          threshold: 0.7
          min_area: 60000
    snapshots:
      enabled: true
      bounding_box: true
      crop: false
      quality: 100
      retain:
        default: 30
    record:
      enabled: true
      retain:
        days: 0
      alerts:
        retain:
          days: 14
        pre_capture: 15
        post_capture: 10
      detections:
        retain:
          days: 14
        pre_capture: 15
        post_capture: 10
    motion:
      mask: 0,0,0,0.298,0.687,0.333,0.668,0

#Caméra terrasse
  terrasse:
    ffmpeg:
      inputs:
        - path: rtsp://user:mdp@IP:554/Streaming/channels/201
          roles:
            - record
        - path: rtsp://user:mdp@IP:554/Streaming/channels/202
          roles:
            - detect
    detect:
      enabled: true
      width: 1280
      height: 720
      fps: 10
    objects:
      track:
        - person
        - cat
        - dog
        - bird
      filters:
        person:
          threshold: 0.7
          min_area: 40000
        cat:
          threshold: 0.7
          min_area: 2000
          max_area: 20000
        dog:
          threshold: 0.7
          min_area: 3000
          max_area: 20000
    snapshots:
      enabled: true
      bounding_box: true
      crop: false
      quality: 100
      retain:
        default: 30
    record:
      enabled: true
      retain:
        days: 0
      alerts:
        retain:
          days: 14
        pre_capture: 15
        post_capture: 10
      detections:
        retain:
          days: 14
        pre_capture: 15
        post_capture: 10
    motion:
      mask: 0,0,0,1,0.207,0.836,0.824,0

#Caméra chambre
  chambre:
    ffmpeg:
      inputs:
        - path: rtsp://user:mdp@IP:554/Streaming/channels/301
          roles:
            - record
        - path: rtsp://user:mdp@IP:554/Streaming/channels/302
          roles:
            - detect
    detect:
      enabled: false
      width: 1280
      height: 720
      fps: 10
    objects:
      track:
        - person
        - cat
        - dog
      filters:
        person:
          threshold: 0.7
          min_area: 40000
        cat:
          threshold: 0.7
          min_area: 2000
          max_area: 20000
        dog:
          threshold: 0.7
          min_area: 2000
          max_area: 20000
    snapshots:
      enabled: true
      bounding_box: true
      crop: false
      quality: 100
      retain:
        default: 30
    record:
      enabled: true
      retain:
        days: 0
      alerts:
        retain:
          days: 14
        pre_capture: 15
        post_capture: 10
      detections:
        retain:
          days: 14
        pre_capture: 15
        post_capture: 10
    motion:
      mask: 0,0,0,0.63,0.914,0
version: 0.15-1

Mais j’ai ces erreurs :

2025-03-04 08:18:14.223412377  [2025-03-04 09:18:14] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2025-03-04 08:18:14.236071793  [2025-03-04 09:18:14] frigate.app                    INFO    : Capture process started for chambre: 424
2025-03-04 08:18:14.338446085  [2025-03-04 09:18:14] frigate.api.fastapi_app        INFO    : Starting FastAPI app
2025-03-04 08:18:14.663261027  [2025-03-04 09:18:14] frigate.api.fastapi_app        INFO    : FastAPI started
2025-03-04 08:18:15.410456397  [2025-03-04 09:18:15] frigate.video                  ERROR   : terrasse: Unable to read frames from ffmpeg process.
2025-03-04 08:18:15.413521450  [2025-03-04 09:18:15] frigate.video                  ERROR   : terrasse: ffmpeg process is not running. exiting capture thread...
2025-03-04 08:18:15.509928268  [2025-03-04 09:18:15] frigate.video                  ERROR   : chambre: Unable to read frames from ffmpeg process.
2025-03-04 08:18:15.512353489  [2025-03-04 09:18:15] frigate.video                  ERROR   : chambre: ffmpeg process is not running. exiting capture thread...
2025-03-04 08:18:15.691871605  [2025-03-04 09:18:15] 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.22.0\nlibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/simpledrm_drv_video.so\nlibva info: va_openDriver() returns -1\nvaInitialize failed with error code -1 (unknown libva error),exit\n"
2025-03-04 08:18:15.814485283  [2025-03-04 09:18:15] frigate.util.services          ERROR   : Unable to poll intel GPU stats: No device filter specified and no discrete/integrated i915 devices found
2025-03-04 08:18:15.814488516  
2025-03-04 08:18:17.292544036  [2025-03-04 09:18:17] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2025-03-04 08:18:22.081940447  172.30.32.2 - - [04/Mar/2025:09:18:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 08:18:25.148169709  [2025-03-04 09:18:25] frigate.video                  ERROR   : entree: Unable to read frames from ffmpeg process.
2025-03-04 08:18:25.149029644  [2025-03-04 09:18:25] frigate.video                  ERROR   : entree: ffmpeg process is not running. exiting capture thread...
2025-03-04 08:18:34.238218104  [2025-03-04 09:18:34] watchdog.entree                ERROR   : Ffmpeg process crashed unexpectedly for entree.
2025-03-04 08:18:34.238264370  [2025-03-04 09:18:34] watchdog.entree                ERROR   : The following ffmpeg logs include the last 100 lines prior to exit.
2025-03-04 08:18:34.238336857  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.238407272  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.238470128  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.238564399  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.238646219  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.238725454  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.238789735  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.238852233  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.238934638  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.238994396  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.239062112  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.239122244  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.239184345  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.239247108  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.239310872  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.239373847  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.239436155  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.239528077  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.239596949  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.239677457  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.239767798  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.239832829  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.239895299  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.241793129  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.244009836  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.244012743  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.244014449  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.244015927  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.244018248  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.244031886  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.244033549  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.244050588  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.244052218  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.244066285  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.244067823  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.244069402  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.244070841  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.244085982  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times
2025-03-04 08:18:34.244087568  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] Error parsing NAL unit #0.
2025-03-04 08:18:34.244089158  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   : [hevc @ 0x561c73465400] PPS id out of range: 0
2025-03-04 08:18:34.244090555  [2025-03-04 09:18:34] ffmpeg.entree.detect           ERROR   :     Last message repeated 1 times

La clé Coral a bien l’air d’être détectée correctement.

Pouvez vous me dire ce qui ne va pas svp ?

Merci pour votre aide!

Salut,

Le souci c’est pas la clé mais ta config pour les flux vidéo

J’ai vu oui mais je ne comprends pas ce que je dois faire et où

Rependre la config qui marchait par exemple. L’ajout de la clé coral ne modifie rien d’autre que la partie TPU en principe

Et puis vérifier que c’est bien la bonne url, les bons users/password, les bonnes dimensions de l’image, et le bon framerate.

Accessoirement, clé coral ou pas : 10 images par secondes en 1280x720 c’est beaucoup… Donc il ne faut pas s’attendre à des performances de dingue

Je me suis basé sur la documentation Frigate pour le coup.
Je viens de tester d’enlever la ligne qui me pose problème car je ne l’avais pas dans mon ancienne configuration, ça a l’air de ne plus mettre d’erreur.

2025-03-04 08:59:27.356634239  [INFO] Preparing Frigate...
2025-03-04 08:59:27.358979857  [INFO] Starting NGINX...
2025-03-04 08:59:27.371494341  [INFO] No TLS certificate found. Generating a self signed certificate...
2025-03-04 08:59:27.399302147  [INFO] Got IP address from supervisor: 192.168.1.68
2025-03-04 08:59:27.449166719  [INFO] Got WebRTC port from supervisor: 8553
2025-03-04 08:59:27.656146446  [INFO] Starting Frigate...
2025-03-04 08:59:28.457346757  [INFO] Starting go2rtc...
2025-03-04 08:59:28.733979716  09:59:28.733 INF go2rtc platform=linux/amd64 revision=b2399f3 version=1.9.2
2025-03-04 08:59:28.736026848  09:59:28.735 INF config path=/dev/shm/go2rtc.yaml
2025-03-04 08:59:28.736761400  09:59:28.736 INF [rtsp] listen addr=:8554
2025-03-04 08:59:28.737130324  09:59:28.736 INF [api] listen addr=:1984
2025-03-04 08:59:28.737241272  09:59:28.737 INF [webrtc] listen addr=:8555/tcp
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-03-04 08:59:28.792497476  [INFO] Starting certsync...
s6-rc: info: service legacy-services successfully started
2025-03-04 08:59:28.942293276  127.0.0.1 - - [04/Mar/2025:09:59:28 +0100] "" 400 0 "-" "-" "-"
2025-03-04 08:59:31.403720419  [2025-03-04 09:59:31] frigate.util.config            INFO    : Checking if frigate config needs migration...
2025-03-04 08:59:31.455683599  [2025-03-04 09:59:31] frigate.util.config            INFO    : frigate config does not need migration...
2025-03-04 08:59:31.554674721  [2025-03-04 09:59:31] frigate.util.services          WARNING : Did not detect hwaccel, using a GPU for accelerated video decoding is highly recommended
2025-03-04 08:59:31.578284834  [2025-03-04 09:59:31] frigate.app                    INFO    : Starting Frigate (0.15.0-cea210d)
2025-03-04 08:59:31.593688114  [2025-03-04 09:59:31] frigate.app                    INFO    : Creating directory: /tmp/cache
2025-03-04 08:59:31.597408861  [2025-03-04 09:59:31] peewee_migrate.logs            INFO    : Starting migrations
2025-03-04 08:59:31.598812891  [2025-03-04 09:59:31] peewee_migrate.logs            INFO    : There is nothing to migrate
2025-03-04 08:59:31.611989086  [2025-03-04 09:59:31] frigate.app                    INFO    : Recording process started: 284
2025-03-04 08:59:31.611992893  [2025-03-04 09:59:31] frigate.app                    INFO    : Review process started: 285
2025-03-04 08:59:31.622584570  [2025-03-04 09:59:31] frigate.app                    INFO    : go2rtc process pid: 96
2025-03-04 08:59:31.639144485  [2025-03-04 09:59:31] detector.coral                 INFO    : Starting detection process: 300
2025-03-04 08:59:31.649912468  [2025-03-04 09:59:31] frigate.app                    INFO    : Output process started: 318
2025-03-04 08:59:31.698975100  [2025-03-04 09:59:31] frigate.app                    INFO    : Camera processor started for entree: 332
2025-03-04 08:59:31.698978642  [2025-03-04 09:59:31] frigate.app                    INFO    : Camera processor started for terrasse: 333
2025-03-04 08:59:31.698980328  [2025-03-04 09:59:31] frigate.app                    INFO    : Camera processor started for chambre: 336
2025-03-04 08:59:31.729004109  [2025-03-04 09:59:31] frigate.app                    INFO    : Capture process started for entree: 352
2025-03-04 08:59:31.771918833  [2025-03-04 09:59:31] frigate.app                    INFO    : Capture process started for terrasse: 360
2025-03-04 08:59:31.820399664  [2025-03-04 09:59:31] frigate.app                    INFO    : Capture process started for chambre: 367
2025-03-04 08:59:31.872356076  2025/03/04 09:59:31 [error] 176#176: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2025-03-04 08:59:31.872361270  2025/03/04 09:59:31 [error] 176#176: *2 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2025-03-04 08:59:31.972480323  [2025-03-04 09:59:31] frigate.api.fastapi_app        INFO    : Starting FastAPI app
2025-03-04 08:59:32.174706660  [2025-03-04 09:59:32] frigate.api.fastapi_app        INFO    : FastAPI started
2025-03-04 08:59:34.415428186  [2025-03-04 09:59:31] frigate.detectors.plugins.edgetpu_tfl INFO    : Attempting to load TPU as usb
2025-03-04 08:59:34.421734756  [2025-03-04 09:59:34] frigate.detectors.plugins.edgetpu_tfl INFO    : TPU found
2025-03-04 08:59:37.355280118  [INFO] Starting go2rtc healthcheck service...
2025-03-04 09:00:22.184936480  172.30.32.2 - - [04/Mar/2025:10:00:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:00:28.981137836  127.0.0.1 - - [04/Mar/2025:10:00:28 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:00:39.757134773  172.30.32.1 - - [04/Mar/2025:10:00:39 +0100] "GET /api/entree/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:00:39.761695780  172.30.32.1 - - [04/Mar/2025:10:00:39 +0100] "GET /api/chambre/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:00:39.763571382  172.30.32.1 - - [04/Mar/2025:10:00:39 +0100] "GET /api/terrasse/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:00:39.801116228  172.30.32.1 - - [04/Mar/2025:10:00:39 +0100] "GET /api/events?cameras=entree,terrasse,chambre&limit=50&include_thumbnails=0 HTTP/1.1" 200 26363 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:01:23.429131117  172.30.32.1 - - [04/Mar/2025:10:01:23 +0100] "GET /api/terrasse/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:01:23.429513856  172.30.32.1 - - [04/Mar/2025:10:01:23 +0100] "GET /api/chambre/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:01:23.430718822  172.30.32.1 - - [04/Mar/2025:10:01:23 +0100] "GET /api/entree/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:01:23.459385481  172.30.32.1 - - [04/Mar/2025:10:01:23 +0100] "GET /api/events?cameras=entree&limit=50&include_thumbnails=0 HTTP/1.1" 200 26183 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:01:29.007751521  127.0.0.1 - - [04/Mar/2025:10:01:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:01:51.376460505  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET // HTTP/1.1" 200 2722 "https://homestef42.duckdns.org/ccab4aaf_frigate" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.706763443  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /fonts/Inter-Regular.woff2 HTTP/1.1" 200 108488 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/assets/index-COg058EU.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.718376086  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/config HTTP/1.1" 200 20424 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.730823868  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/profile HTTP/1.1" 200 17 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.747233099  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 3618 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.926908241  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/entree/latest.webp?height=319&cache=1741078910485 HTTP/1.1" 200 17728 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.934161021  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/entree/latest.webp?height=360&cache=1741078910463 HTTP/1.1" 200 22070 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.935079355  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/chambre/latest.webp?height=319&cache=1741078910485 HTTP/1.1" 200 32810 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.941929031  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/terrasse/latest.webp?height=319&cache=1741078910485 HTTP/1.1" 200 23156 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.945580490  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/terrasse/latest.webp?height=360&cache=1741078910463 HTTP/1.1" 200 30676 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:51.957021096  172.30.32.2 - - [04/Mar/2025:10:01:51 +0100] "GET /api/chambre/latest.webp?height=360&cache=1741078910464 HTTP/1.1" 200 44764 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:57.406152806  172.30.32.2 - - [04/Mar/2025:10:01:57 +0100] "GET /fonts/Inter-SemiBold.woff2 HTTP/1.1" 200 111588 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/assets/index-COg058EU.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:57.537281323  172.30.32.2 - - [04/Mar/2025:10:01:57 +0100] "GET /api/config HTTP/1.1" 200 20424 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:57.539343913  172.30.32.2 - - [04/Mar/2025:10:01:57 +0100] "GET /api/profile HTTP/1.1" 200 17 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:57.541812084  172.30.32.2 - - [04/Mar/2025:10:01:57 +0100] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 3618 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA//" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:01:59.692380361  172.30.32.2 - - [04/Mar/2025:10:01:59 +0100] "GET /fonts/Inter-Medium.woff2 HTTP/1.1" 200 111380 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/assets/index-COg058EU.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:02:00.022618706  172.30.32.2 - - [04/Mar/2025:10:02:00 +0100] "GET /api/config HTTP/1.1" 200 20424 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/system" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:02:22.194386365  172.30.32.2 - - [04/Mar/2025:10:02:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:02:29.033605644  127.0.0.1 - - [04/Mar/2025:10:02:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:03:00.911806834  172.30.32.2 - - [04/Mar/2025:10:03:00 +0100] "GET /api/config HTTP/1.1" 200 20424 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/system" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:03:00.915886301  172.30.32.2 - - [04/Mar/2025:10:03:00 +0100] "GET /api/profile HTTP/1.1" 200 17 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/system" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:03:14.150893746  172.30.32.2 - - [04/Mar/2025:10:03:14 +0100] "GET /api/config/raw HTTP/1.1" 200 4414 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/config" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:03:14.475607328  172.30.32.2 - - [04/Mar/2025:10:03:14 +0100] "GET /api/config/schema.json HTTP/1.1" 200 40848 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/assets/yaml.worker.bundle.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:03:29.058570902  127.0.0.1 - - [04/Mar/2025:10:03:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:03:30.158089335  [2025-03-04 10:03:30] frigate.util.services          WARNING : Did not detect hwaccel, using a GPU for accelerated video decoding is highly recommended
2025-03-04 09:03:30.190419642  172.30.32.2 - - [04/Mar/2025:10:03:30 +0100] "POST /api/config/save?save_option=saveonly HTTP/1.1" 200 55 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/config" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:03:45.660131573  [2025-03-04 10:03:45] frigate.util.services          WARNING : Did not detect hwaccel, using a GPU for accelerated video decoding is highly recommended
2025-03-04 09:03:45.687016899  172.30.32.2 - - [04/Mar/2025:10:03:45 +0100] "POST /api/config/save?save_option=saveonly HTTP/1.1" 200 55 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/config" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:04:22.198693361  172.30.32.2 - - [04/Mar/2025:10:04:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:04:29.088205888  127.0.0.1 - - [04/Mar/2025:10:04:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:04:31.129711271  [2025-03-04 10:04:31] frigate.util.services          WARNING : Did not detect hwaccel, using a GPU for accelerated video decoding is highly recommended
2025-03-04 09:04:31.156676811  172.30.32.2 - - [04/Mar/2025:10:04:31 +0100] "POST /api/config/save?save_option=saveonly HTTP/1.1" 200 55 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/config" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:05:29.113884322  127.0.0.1 - - [04/Mar/2025:10:05:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:06:22.202666980  172.30.32.2 - - [04/Mar/2025:10:06:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:06:29.148984351  127.0.0.1 - - [04/Mar/2025:10:06:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:07:29.176011267  127.0.0.1 - - [04/Mar/2025:10:07:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:08:22.209704057  172.30.32.2 - - [04/Mar/2025:10:08:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:08:29.204558011  127.0.0.1 - - [04/Mar/2025:10:08:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:09:29.229193813  127.0.0.1 - - [04/Mar/2025:10:09:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:10:22.214447222  172.30.32.2 - - [04/Mar/2025:10:10:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:10:29.254237415  127.0.0.1 - - [04/Mar/2025:10:10:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:11:29.290575505  127.0.0.1 - - [04/Mar/2025:10:11:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:12:22.217434703  172.30.32.2 - - [04/Mar/2025:10:12:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:12:29.316208620  127.0.0.1 - - [04/Mar/2025:10:12:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:13:29.342369375  127.0.0.1 - - [04/Mar/2025:10:13:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:14:22.226378719  172.30.32.2 - - [04/Mar/2025:10:14:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:14:29.372576444  127.0.0.1 - - [04/Mar/2025:10:14:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:15:29.399801926  127.0.0.1 - - [04/Mar/2025:10:15:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:16:22.232482346  172.30.32.2 - - [04/Mar/2025:10:16:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:16:29.424164400  127.0.0.1 - - [04/Mar/2025:10:16:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:17:29.458808535  127.0.0.1 - - [04/Mar/2025:10:17:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:18:09.942866459  172.30.32.2 - - [04/Mar/2025:10:18:09 +0100] "GET /api/profile HTTP/1.1" 200 17 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/config" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:18:09.942870907  172.30.32.2 - - [04/Mar/2025:10:18:09 +0100] "GET /api/config/raw HTTP/1.1" 200 3995 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/config" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:18:09.942876050  172.30.32.2 - - [04/Mar/2025:10:18:09 +0100] "GET /api/config HTTP/1.1" 200 20424 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/config" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:18:10.342230295  172.30.32.2 - - [04/Mar/2025:10:18:10 +0100] "GET /api/config/schema.json HTTP/1.1" 200 40848 "https://homestef42.duckdns.org/api/hassio_ingress/fmZGJVUHkTl2q03Pzhl3RdOFFfsSOkFz7vzs6O1SUzA/assets/yaml.worker.bundle.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" "192.168.1.254, 172.30.32.1"
2025-03-04 09:18:12.026963953  172.30.32.1 - - [04/Mar/2025:10:18:12 +0100] "GET /api/chambre/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:12.030411465  172.30.32.1 - - [04/Mar/2025:10:18:12 +0100] "GET /api/terrasse/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:12.033702383  172.30.32.1 - - [04/Mar/2025:10:18:12 +0100] "GET /api/entree/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:12.082982476  172.30.32.1 - - [04/Mar/2025:10:18:12 +0100] "GET /api/events?cameras=entree&limit=50&include_thumbnails=0 HTTP/1.1" 200 26183 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:21.083521786  172.30.32.1 - - [04/Mar/2025:10:18:21 +0100] "GET /api/entree/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:21.086954116  172.30.32.1 - - [04/Mar/2025:10:18:21 +0100] "GET /api/chambre/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:21.087425521  172.30.32.1 - - [04/Mar/2025:10:18:21 +0100] "GET /api/terrasse/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:21.116728312  172.30.32.1 - - [04/Mar/2025:10:18:21 +0100] "GET /api/events?cameras=entree&limit=50&include_thumbnails=0 HTTP/1.1" 200 26183 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:22.235453319  172.30.32.2 - - [04/Mar/2025:10:18:22 +0100] "GET / HTTP/1.1" 200 2651 "-" "HomeAssistantSupervisor/2025.03.0 aiohttp/3.11.13 Python/3.13" "-"
2025-03-04 09:18:29.440602869  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/terrasse/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:29.444383645  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/entree/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:29.445660418  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/chambre/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:29.446468992  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/terrasse/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:29.446680109  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/entree/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:29.449168210  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/chambre/ptz/info HTTP/1.1" 200 2 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:29.487059206  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/events?cameras=entree,terrasse,chambre&limit=50&include_thumbnails=0 HTTP/1.1" 200 26363 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"
2025-03-04 09:18:29.488410333  127.0.0.1 - - [04/Mar/2025:10:18:29 +0100] "" 400 0 "-" "-" "-"
2025-03-04 09:18:29.504862896  172.30.32.1 - - [04/Mar/2025:10:18:29 +0100] "GET /api/events?cameras=entree,terrasse,chambre&limit=50&include_thumbnails=0 HTTP/1.1" 200 26363 "-" "HomeAssistant/2025.2.5 aiohttp/3.11.12 Python/3.13" "-"

Par contre les caméras sont indisponibles dans la card Frigate (advanced-camera-card) :

Il y a donc un lien avec cela je suppose car cela fonctionne bien dans Frigate directement :

Je ne comprends pas pourquoi mes caméras sont indisponibles…

Je me réponds à moi même mais il faut bien laisser l’encart mqtt dans « Frigate.yml » pour que cela fonctionne!