gareth_iowc

Members
  • Posts

    107
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

gareth_iowc's Achievements

Apprentice

Apprentice (3/14)

2

Reputation

  1. Did you run the vm setup script from the user scripts section? If so what was the output
  2. Anyone having what I assume is kernel panic issues? I have other Linux VM’s running without issue but after starting the big sur installer and it's been running for a while the sever crashes as requires a manual reboot. System remains stable until I start this install again
  3. I had an opportunity to move my server into a data centre that benefits me as I'm saving on electricity and the wife doesn't need to listen to the server anymore in the front room. I have a MikroTik CCR1036-8g-2s+ and a CCR1009-8G-1S connected using an EOIP tunnel and encrypted using IPsec. Both ends have a symmetrical 900 Mbps internet connection but due to the IPsec I can only push around 300mbps (full line speed with IPsec disabled) Rather than keep throwing money at routers, I'm thinking of running Mikrotik's cloud-hosted router VM on my unraid server and passing a 10 GB fibre card. I know the main security would come down to my router config inside the VM but would there be any other vulnerabilities? It feels a little scary plugging the internet directly into my server.
  4. I'm not sure if it's part of the visual editor plugin i'm using but can the review process be disabled when edit a page?
  5. Thanks, I have seen this document but I’m a bit confused on how it works. So by creating zones you can set alerts for only the driveway zone but what’s telling the system to ignore the car while parked?
  6. I'm after some help getting frigate to decide when an car/object is stationary and ignore until it moves. The cars highlighted and almost always parked in the same place and i get loads of snap shots and recordings while they are stationary. I want to track the whole picture not just my driveway. My current config - mqtt: host: 10.10.50.8 topic_prefix: frigate client_id: frigate user: admin password: pass cameras: Driveway: ffmpeg: inputs: - path: rtsp://admin://[email protected]:554/Streaming/Channels/101 roles: - detect - rtmp - clips detect: # Optional: width of the frame for the input with the detect role (default: shown below) width: 3840 # Optional: height of the frame for the input with the detect role (default: shown below) height: 2160 # Optional: desired fps for your camera for the input with the detect role (default: shown below) # NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera. fps: 5 # Optional: enables detection for the camera (default: True) # This value can be set via MQTT and will be updated in startup based on retained value enabled: True # Optional: Number of frames without a detection before frigate considers an object to be gone. (default: 5x the frame rate) max_disappeared: 25 # Optional: Configuration for stationary object tracking stationary: # Optional: Frequency for confirming stationary objects (default: shown below) # When set to 0, object detection will not confirm stationary objects until movement is detected. # If set to 10, object detection will run to confirm the object still exists on every 10th frame. interval: 0 # Optional: Number of frames without a position change for an object to be considered stationary (default: 10x the frame rate or 10s) threshold: 50 # Optional: Define a maximum number of frames for tracking a stationary object (default: not set, track forever) # This can help with false positives for objects that should only be stationary for a limited amount of time. # It can also be used to disable stationary object tracking. For example, you may want to set a value for person, but leave # car at the default. # WARNING: Setting these values overrides default behavior and disables stationary object tracking. # There are very few situations where you would want it disabled. It is NOT recommended to # copy these values from the example config into your config unless you know they are needed. max_frames: # Optional: Default for all object types (default: not set, track forever) default: 3000 # Optional: Object specific values objects: person: 1000 objects: # Optional: list of objects to track from labelmap.txt (default: shown below) track: - person - car - cat - dog - bird snapshots: # Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below) # This value can be set via MQTT and will be updated in startup based on retained value enabled: true # Optional: print a timestamp on the snapshots (default: shown below) timestamp: False # Optional: draw bounding box on the snapshots (default: shown below) bounding_box: False # Optional: crop the snapshot (default: shown below) crop: False # Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones) required_zones: [] # Optional: Camera override for retention settings (default: global values) retain: # Required: Default retention days (default: shown below) default: 10 # Optional: Per object retention days objects: person: 15 record: enabled: True retain: days: 5 mode: all events: retain: default: 5 mode: active_objects detectors: # Required: name of the detector coral: # Required: type of the detector # Valid values are 'edgetpu' (requires device property below) and 'cpu'. type: edgetpu # Optional: device name as defined here: https://coral.ai/docs/edgetpu/multiple-edgetpu/#using-the-tensorflow-lite-python-api device: usb I'm a bit confused on how to add the following config as it stops frigate from loading - Ref- https://docs.frigate.video/configuration/stationary_objects/ detect: stationary: interval: 0 threshold: 50
  7. I'm trying to get the home assustant frigate plugin to work but it's not connecting Log Details (ERROR) This error originated from a custom integration. Logger: custom_components.frigate.api Source: custom_components/frigate/api.py:51 Integration: frigate (documentation, issues) First occurred: 17:24:59 (1 occurrences) Last logged: 17:24:59 Timeout error fetching information from http://10.10.10.14:5000/api/stats: The ip is reachable from home assistant - any ideas?
  8. Thanks that worked I would like to review short videos clips of the events and have added clips: enabled: true retain: defualt: 15 but frigate wont start with that added mqtt: host: 10.10.50.8 cameras: back: ffmpeg: inputs: - path: rtsp://user:[email protected]:554/Streaming/Channels/101 roles: - detect - rtmp - clips objects: # Optional: list of objects to track from labelmap.txt (default: shown below) track: - person - car - cat - dog - bird snapshots: # Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below) # This value can be set via MQTT and will be updated in startup based on retained value enabled: true # Optional: print a timestamp on the snapshots (default: shown below) timestamp: False # Optional: draw bounding box on the snapshots (default: shown below) bounding_box: False # Optional: crop the snapshot (default: shown below) crop: False # Optional: Restrict snapshots to objects that entered any of the listed zones (default: no required zones) required_zones: [] # Optional: Camera override for retention settings (default: global values) retain: # Required: Default retention days (default: shown below) default: 10 # Optional: Per object retention days objects: person: 15 clips: enabled: true retain: defualt: 15 # Optional: Detectors configuration. Defaults to a single CPU detector detectors: # Required: name of the detector coral: # Required: type of the detector # Valid values are 'edgetpu' (requires device property below) and 'cpu'. type: edgetpu # Optional: device name as defined here: https://coral.ai/docs/edgetpu/multiple-edgetpu/#using-the-tensorflow-lite-python-api device: usb
  9. How do i get the show options button to enable bounding box etc? mqtt: host: 10.10.50.8 cameras: back: ffmpeg: inputs: - path: rtsp://user:[email protected]:554/Streaming/Channels/101 roles: - detect - rtmp # Optional: Detectors configuration. Defaults to a single CPU detector detectors: # Required: name of the detector coral: # Required: type of the detector # Valid values are 'edgetpu' (requires device property below) and 'cpu'. type: edgetpu # Optional: device name as defined here: https://coral.ai/docs/edgetpu/multiple-edgetpu/#using-the-tensorflow-lite-python-api device: usb
  10. Can i choose a different different virtual network card for my windows vm? It's current using the default virtio card. I have an issue where anything inbound via the network over 40mbps brings causes the vm to slow down to the point of rgb not working on the keyboard and mouse lag. This issue has followed multiple versions of unraid and virtio drives. Changed motherboard and cpu from intel to amd and still have the issue. The array has been running as fully ssd for the past 3 years and it works great it's just the network issue that brings it to it's knees
  11. bugs attracted to the IR light of my camera trigger the motion recording all the time. can anyone recommend what setting i should be changing?
  12. Can't get it to resize via the GUI either. Any ideas?
  13. My hp server has some on board storage that i would like unraid to ignore as it uses up drive availability in my licence "HP_iLO_LUN_00_Media_0_000002660A01-0:0 - 268 MB (sdb)" It's not been added to the array and sits in unassigned devices Can i get unraid to ignore this device?
  14. Hi all, I'm very interested in controlling my fan speed depending on hard drive temperature. I have tired Dynamix Auto Fan Control but i can't detect anything on my board. Can anyone recommend a usb PWM controller that will be supported in unraid? Thanks