Frigate Config Review not Loading

Hi All,

I have recent changed my camera’s to Reolink from ring and built myself a nas in the server rack.

I can load all my cameras on my iphone through my ip address

but when i go to load on my laptop, it loads the scrubbing to images but then just spins and the video next loads.

its running through a proxmox LXC and my config is below, im gunna guess ive missed something really simple

mqtt:
  host: 192.168.4.132
  port: 1883
  user: frigate
  password: ########

ffmpeg:
  hwaccel_args: []

go2rtc:
  streams:
    doorbell_record:
      - rtsp://admin:#####@192.168.7.193:554/h264Preview_01_main

    doorbell_detect:
      - rtsp://admin: :#####@192.168.7.193:554/h264Preview_01_sub

    driveway_track_record:
      - rtsp://admin: :#####@192.168.7.97:554/h264Preview_02_main
    driveway_track_detect:
      - rtsp://admin: :#####@192.168.7.97:554/h264Preview_02_sub

    driveway_wide_record:
      - rtsp://admin: :#####@192.168.7.97:554/h264Preview_01_main
    driveway_wide_detect:
      - rtsp://admin: :#####@192.168.7.97:554/h264Preview_01_sub

    garden_record:
      - rtsp://admin: :#####@192.168.7.94:554/h264Preview_01_main
    garden_detect:
      - rtsp://admin: :#####@192.168.7.94:554/h264Preview_01_sub

    front_record:
      - rtsp://admin: :#####@192.168.7.93:554/h264Preview_01_main
    front_detect:
      - rtsp://admin: :#####@192.168.7.93:554/h264Preview_01_sub

detectors:
  coral:
    type: edgetpu
    device: usb

record:
  enabled: true
  continuous:
    days: 5
  alerts:
    retain:
      days: 5

  detections:
    retain:
      days: 5

review:
  alerts:
    labels:
      - person

  detections:
    labels:
      - car
      - dog
      - cat

snapshots:
  enabled: true
  bounding_box: true
  crop: false
  retain:
    default: 5

birdseye:
  enabled: true
  mode: continuous

cameras:
  doorbell:
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/doorbell_record
          input_args: preset-rtsp-restream
          roles:
            - record

        - path: rtsp://127.0.0.1:8554/doorbell_detect
          input_args: preset-rtsp-restream
          roles:
            - detect

    detect:
      width: 640
      height: 480
      fps: 5

    objects:
      track:
        - person

      filters:
        person:
          min_score: 0.7
          threshold: 0.8

    zones:
      reolink_front_door_zone:
        coordinates: 
          0.618,0.39,0.587,0.496,0.554,0.699,0.454,0.739,0.399,0.762,0.395,1,0.515,1,1,1,1,0.397,1,0.2,0.774,0.28
        inertia: 1
        loitering_time: 0
        objects: person
        friendly_name: Reolink Front Door Zone
  driveway_track:
    enabled: true
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/driveway_track_record
          input_args: preset-rtsp-restream
          roles:
            - record

        - path: rtsp://127.0.0.1:8554/driveway_track_detect
          input_args: preset-rtsp-restream
          roles:
            - detect
    detect:
      width: 896
      height: 512
      fps: 5
    objects:
      track:
        - person
        - car
      filters:
        person:
          min_score: 0.7
          threshold: 0.8
        car:
          min_score: 0.65
          threshold: 0.75

  driveway_wide:
    enabled: true
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/driveway_wide_record
          input_args: preset-rtsp-restream
          roles:
            - record

        - path: rtsp://127.0.0.1:8554/driveway_wide_detect
          input_args: preset-rtsp-restream
          roles:
            - detect
    detect:
      width: 1920
      height: 720
      fps: 5
    objects:
      track:
        - person
        - car
      filters:
        person:
          min_score: 0.7
          threshold: 0.8
        car:
          min_score: 0.7
          threshold: 0.8
    zones:
      reolink_driveway_zone:
        coordinates: 
          0.462,0.76,0.567,0.746,0.674,0.731,0.817,0.687,0.892,0.686,0.915,0.6,0.956,0.787,1,1,0,1,0,0.682,0.083,0.545,0.409,0.428
        inertia: 2
        loitering_time: 0
        friendly_name: Reolink Driveway Zone
  garden:
    enabled: true
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/garden_record
          input_args: preset-rtsp-restream
          roles:
            - record

        - path: rtsp://127.0.0.1:8554/garden_detect
          input_args: preset-rtsp-restream
          roles:
            - detect
    detect:
      enabled: true
      width: 640
      height: 360
      fps: 5
    objects:
      track:
        - person
      filters:
        person:
          min_score: 0.7
          threshold: 0.8
        car:
          min_score: 0.7
          threshold: 0.8

    zones:
      reolink_garden_zone:
        coordinates: 
          0.12,0.282,0.256,0.26,0.338,0.229,0.412,0.177,0.66,0.243,0.996,0.398,1,1,0,1,0,0.302
        loitering_time: 0
        friendly_name: Reolink Garden Zone
        inertia: 3
        objects: person
  front:
    enabled: true

    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/front_record
          input_args: preset-rtsp-restream
          roles:
            - record

        - path: rtsp://127.0.0.1:8554/front_detect
          input_args: preset-rtsp-restream
          roles:
            - detect

    detect:
      width: 640
      height: 360
      fps: 5

    objects:
      track:
        - person
        - car
      filters:
        person:
          min_score: 0.7
          threshold: 0.8
        car:
          min_score: 0.7
          threshold: 0.8

    zones:
      reolink_front_entrance_zone:
        coordinates: 
          0.553,0.913,0.609,0.813,0.637,0.755,0.631,0.557,0.652,0.555,0.689,0.491,0.711,0.348,1,0.495,1,1,0.458,1
        inertia: 2
        loitering_time: 0
        friendly_name: Reolink Front Entrance Zone
version: 0.17-0


Frigate Documentation pages might help and
blakeblackshear/frigate · Discussions · GitHub is the official Frigate support hub and is another good place to get help with Frigate if you don’t get an answer here.

How do the packets get routed around your segmented network?

The MQTT broker is on 192.168.4.x and the cameras are on 192.168.7.x. Routing exists between the two networks because frigate and mqtt can see each other. It records to nas and i can access through my mobile and can down from frigate in the web UI but i cant seem to get it playing in the UI.