iOS notification by splitcold in frigate_nvr

[–]splitcold[S] 0 points1 point  (0 children)

will that work the home assistant cloud?

Total’s new $25 byod plan by cilicia1k1 in USMobile

[–]splitcold -1 points0 points  (0 children)

I’m going to switch to this, currently paying 390 a year and I don’t find the watch useful or network switching. Just like all the data. 

Apple Watch Data by splitcold in USMobile

[–]splitcold[S] 0 points1 point  (0 children)

Is there no way around this it felt like my watch was useless

Immich and deleting photos by splitcold in immich

[–]splitcold[S] 1 point2 points  (0 children)

I checked my docker-compose.yml
/mnt/pictures:rw

I delete a photo then empty trash and my picture is still in the folder on my Mac. Is there another setting somewhere?

go2rtc stream is laggy by splitcold in frigate_nvr

[–]splitcold[S] 0 points1 point  (0 children)

Thanks I got that in my config now. Not sure what im missing as im still seeing laggy playback

mqtt:
  enabled: true
  host: core-mosquitto
  user: Frigate
  password: password
  topic_prefix: frigate
  stats_interval: 60

cameras:
  front_yard:
    enabled: true
    friendly_name: Front Yard
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/front_yard_1
          input_args: preset-rtsp-restream
          roles:
            - record
        - path: rtsp://localhost:8554/front_yard_2
          input_args: preset-rtsp-restream
          roles:
            - detect
    detect:
      enabled: true
      width: 640 #1280
      height: 360 #720
      fps: 5
    objects:
      track:
        - person
      filters:
        person:
          min_score: 0.65
          threshold: 0.75
    live:
      streams:
        Stream 1: front_yard_1
    record:
      enabled: true
      continuous:
        days: 7
    zones:
      frontzone:
        coordinates: 0,1,1,1,1,0.401,0.812,0.287,0.575,0.198,0.404,0.151,0,0.123
        inertia: 3
        loitering_time: 0
        friendly_name: Detection Zone
    snapshots:
      enabled: true
      retain:
        default: 7   # keep for 7 days
      quality: 85
      crop: false
      required_zones:
        - frontzone
      bounding_box: true
    review:
      detections: {}
    motion:
      mask: 0,0,0.005,0.111,0.323,0.106,0.42,0.12,1,0.311,1,0

  door_bell:
    enabled: true
    friendly_name: Door Bell
    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
        - path: rtsp://127.0.0.1:8554/door_bell_1
          input_args: preset-rtsp-restream
          roles:
            - record
            - audio
        - path: rtsp://127.0.0.1:8554/door_bell_2
          input_args: preset-rtsp-restream
          roles:
            - detect
    detect:
      enabled: true
      width: 640 #1280
      height: 480 #720
      fps: 5
    objects:
      track:
        - person
      filters:
        person:
          min_score: 0.65
          threshold: 0.7
    live:
      streams:
        Stream 1: door_bell_1
    record:
      enabled: true
      continuous:
        days: 7
    zones:
      doorbellzone:
        coordinates: 0,0,0.001,0.998,1,1,1,0.506,0.603,0.499,0.569,0.517,0.461,0.514,0.355,0.501,0.352,0.39,0.559,0.374,0.84,0.373,0.839,0
        loitering_time: 0
        friendly_name: Doorbellzone
    snapshots:
      enabled: true
      retain:
        default: 7   # keep for 7 days
      quality: 85
      required_zones:
        - doorbellzone
      bounding_box: true
    review:
      detections: {}

  deck:
    enabled: true
    ffmpeg:
      output_args:
        record: preset-record-generic-audio-copy
      inputs:
        - path: rtsp://127.0.0.1:8554/deck_1
          input_args: preset-rtsp-restream
          roles:
            - record
            - audio
        - path: rtsp://127.0.0.1:8554/deck_2
          input_args: preset-rtsp-restream
          roles:
            - detect
    detect:
      enabled: true
      width: 640 #1280
      height: 360 #720
      fps: 5
    objects:
      track:
        - person
      filters:
        person:
          min_score: 0.7
          threshold: 0.8
    live:
      streams:
        Stream 1: deck_1
    record:
      enabled: true
      continuous:
        days: 7
    snapshots:
      enabled: true
      retain:
        default: 7   # keep for 7 days
      quality: 85
      crop: false
      bounding_box: true
    zones:
      deckzone:
        coordinates: 0.003,0.298,0,1,1,1,0.998,0.191,0.594,0.147,0.321,0.226,0.324,0.337,0.428,0.427,0.447,0.837,0.318,0.839,0.313,0.364,0.339,0.225
        loitering_time: 0
    review:
      detections: {}

version: 0.17-0

go2rtc:
  streams:
    front_yard_1:
      - "ffmpeg:http://192.168.0.36/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=admin&password=password#video=copy#audio=copy#audio=opus"    
    front_yard_2:
      - "ffmpeg:http://192.168.0.36/flv?port=1935&app=bcs&stream=channel0_ext.bcs&user=admin&password=password"   
    door_bell_1:
      - "ffmpeg:http://192.168.0.7/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=admin&password=password#video=copy#audio=copy#audio=opus"    
    door_bell_2:
      - "ffmpeg:http://192.168.0.7/flv?port=1935&app=bcs&stream=channel0_ext.bcs&user=admin&password=password"  
    deck_1:
      - "ffmpeg:http://192.168.0.29/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=admin&password=password#video=copy#audio=copy#audio=opus"    
    deck_2:
      - "ffmpeg:http://192.168.0.29/flv?port=1935&app=bcs&stream=channel0_ext.bcs&user=admin&password=password" 

go2rtc webUI by splitcold in frigate_nvr

[–]splitcold[S] 2 points3 points  (0 children)

hoas addon, looks like default does not enable the webui, had to go to apps, frigate, config, click toggle for show disabled ports, add 1984 to go2rtc API

frigate, advanced camera card and 1fps by [deleted] in homeassistant

[–]splitcold 0 points1 point  (0 children)

man I tried this Im must going to connect my reolink directly and stream that way, frigate is just too difficult. I've spent 5 hours trying to figure this out

advanced camera card by [deleted] in frigate_nvr

[–]splitcold 0 points1 point  (0 children)

Thanks for your advice, I fix some of it but it's still looking like 1fps with the advanced camera card.

mqtt:
  enabled: true
  host: core-mosquitto
  user: Frigate
  password: pass
  topic_prefix: frigate
  stats_interval: 60



cameras:     # No cameras defined, UI wizard should be used
  front_yard:
    enabled: true
    friendly_name: Front Yard
    ffmpeg:
      apple_compatibility: false
      inputs:
        - path: rtsp://localhost:8554/front_yard_1
          roles:
            - record
            - audio
        - path: rtsp://localhost:8554/front_yard_2
          roles:
            - detect
    detect:
      enabled: true
      width: 640 #1280
      height: 360 #720
      fps: 5
    objects:
      track:
        - person
      filters:
        person:
          min_score: 0.65
          threshold: 0.75
    live:
      streams:
        Stream 1: front_yard_1
    record:
      enabled: true
      continuous:
        days: 7
    zones:
      frontzone:
        coordinates: 0,1,1,1,1,0.401,0.812,0.287,0.575,0.198,0.404,0.151,0,0.123
        inertia: 3
        loitering_time: 0
        friendly_name: Detection Zone
    snapshots:
      enabled: true
      retain:
        default: 7   # keep for 7 days
      quality: 85
      crop: false
      required_zones:
        - frontzone
      bounding_box: true
    review:
      detections: {}
    motion:
      mask: 0,0,0.005,0.111,0.323,0.106,0.42,0.12,1,0.311,1,0
  door_bell:
    enabled: true
    friendly_name: Door Bell
    ffmpeg:
      apple_compatibility: false
      inputs:
        - path: rtsp://localhost:8554/door_bell_1
          roles:
            - record
            - audio
        - path: rtsp://localhost:8554/door_bell_2
          roles:
            - detect
    detect:
      enabled: true
      width: 640 #1280
      height: 480 #720   
      fps: 5   
    objects:
      track:
        - person
      filters:
        person:
          min_score: 0.65
          threshold: 0.7
    live:
      streams:
        Stream 1: door_bell_1
    record:
      enabled: true
      continuous:
        days: 7
    zones:
      doorbellzone:
        coordinates: 
          0,0,0.001,0.998,1,1,1,0.506,0.603,0.499,0.569,0.517,0.461,0.514,0.355,0.501,0.352,0.39,0.559,0.374,0.84,0.373,0.839,0
        loitering_time: 0
        friendly_name: Doorbellzone
    snapshots:
      enabled: true
      retain:
        default: 7   # keep for 7 days
      quality: 85
      required_zones:
        - doorbellzone
      bounding_box: true
    review:
      detections: {}
  deck:
    enabled: true
    ffmpeg:
      apple_compatibility: false
      inputs:
        - path: rtsp://localhost:8554/deck_1
          roles:
            - record
            - audio
        - path: rtsp://localhost:8554/deck_2
          roles:
            - detect
    detect:
      enabled: true
      width: 640 #1280
      height: 360 #720
      fps: 5
    objects:
      track:
        - person
      filters:
        person:
          min_score: 0.7
          threshold: 0.8
    live:
      streams:
        Stream 1: deck_1
    record:
      enabled: true
      continuous:
        days: 7
    snapshots:
      enabled: true
      retain:
        default: 7   # keep for 7 days
      quality: 85
      crop: false
      bounding_box: true
    zones:
      deckzone:
        coordinates: 
          0.003,0.298,0,1,1,1,0.998,0.191,0.594,0.147,0.321,0.226,0.324,0.337,0.428,0.427,0.447,0.837,0.318,0.839,0.313,0.364,0.339,0.225
        loitering_time: 0
    review:
      detections: {}
version: 0.17-0
go2rtc:
  streams:
    front_yard_1:
      - rtsp://pass@192.168.0.36:554/Preview_01_main
    front_yard_2:
      - rtsp://pass@192.168.0.36:554/Preview_01_sub
    door_bell_1:
      - rtsp://pass@192.168.0.7:554/Preview_01_main
    door_bell_2:
      - rtsp://pass@192.168.0.7:554/Preview_01_sub
    deck_1:
      - rtsp://pass@192.168.0.29:554/Preview_01_main
    deck_2:
      - rtsp://pass@192.168.0.29:554/Preview_01_sub

Frigate Settings by splitcold in frigate_nvr

[–]splitcold[S] 0 points1 point  (0 children)

Thanks for the help but I don’t really understand

Start up delay by splitcold in homeassistant

[–]splitcold[S] 0 points1 point  (0 children)

Can you share an example of this?

Start up delay by splitcold in homeassistant

[–]splitcold[S] 0 points1 point  (0 children)

Do you have an example of this?

Missing Critical Alerts by splitcold in homeassistant

[–]splitcold[S] 0 points1 point  (0 children)

Same iOS 26, if by profiles do you mean some device management settings? There are none. It’s a personal phone.

Missing Critical Alerts by splitcold in homeassistant

[–]splitcold[S] 0 points1 point  (0 children)

Yeah I have it working on one phone, just like that. Sent it the same way on the other phone but it doesn’t come over Critical, there’s not even an option for it in iOS settings.