User Tools

Site Tools


homeautomation:frigatenvr

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

homeautomation:frigatenvr [2024/10/12 22:10] – created wikiadminhomeautomation:frigatenvr [2026/08/03 16:51] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-====== Frigate NVR Installation ====== 
- 
- 
-===== Docker ===== 
- 
- 
-Download and save the Docker repository signing key:  
-  
-  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg 
-  
-Add the Docker repository in /etc/apt/sources.list.d/docker.list:  
-  
-  deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu noble stable 
-  
-Allow unattended updates from this repository by add to /etc/apt/apt.conf.d/50unattended-upgrades:  
-  
-<code> 
-Unattended-Upgrade::Allowed-Origins {  
-        // Append to end of existing entries 
-        "Docker:${distro_codename}"; 
-}; 
-</code> 
-  
-Update the repositories and install the package:  
-  
-  apt update 
-  apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin 
-  
-Check all is working with: 
- 
-  docker version 
-  
-Stop the services:  
-  
-  systemctl stop docker.service 
-  systemctl stop docker.socket 
-  systemctl stop containerd.service 
-  
-Move the Docker root directory: (optional) 
-  
-  mv /var/lib/docker /srv/data 
-  
-Edit the systemd service for Docker:  
-  
-  systemctl edit docker.service (only if moving) 
-  
-Add the following to the top of the override file:  
- 
-<code>  
- [Service] 
- ExecStart= 
- ExecStart=/usr/bin/dockerd -–data-root=/srv/data/docker -H fd:// --containerd=/run/containerd/containerd.sock 
-</code> 
-  
-Restart Docker:  
-  
-  systemctl daemon-reload 
-  systemctl start docker.service 
-  
-Check it still works with:  
-  
-  docker run hello-world 
-  
-  
-===== GPU Hardware Acceleration ===== 
- 
-  
-Download and save the NVIDIA repository signing key:  
-  
-  curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | gpg --dearmor -o /etc/apt/keyrings/nvidia-container.gpg 
-  
-Add the Docker repository in /etc/apt/sources.list.d/nvidia-container.list:  
-  
-  deb [signed-by=/etc/apt/keyrings/nvidia-container.gpg] https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/$(ARCH) / 
-  
-Allow unattended updates from this repository by add to /etc/apt/apt.conf.d/50unattended-upgrades:  
-  
-<code> 
-Unattended-Upgrade::Origins-Pattern { 
-        "site=nvidia.github.io"; 
-}; 
-</code> 
-  
-Update the repositories and install the package:  
-  
-  apt update 
-  apt install nvidia-docker2 
-  
-Restart Docker:  
-  
-  systemctl restart docker.service 
- 
- 
-===== Frigate ===== 
- 
- 
-If using ZFS, create a filesystem to store the video recordings (not used currently) 
-  
-  zfs create -o recordsize=1M -o compression=off -o quota=256G data/cctv 
-  
- 
-Create a configuration directory for Frigate:  
-  
-  mkdir /etc/frigate 
-  
- 
-Create /etc/frigate/docker-compose.yml:  
- 
-<code> 
-services: 
-  frigate: 
-    container_name: frigate 
-    privileged: true # this may not be necessary for all setups 
-    restart: unless-stopped 
-    image: ghcr.io/blakeblackshear/frigate:stable-tensorrt 
-    network_mode: bridge 
-    deploy: 
-      resources: 
-        reservations: 
-          devices: 
-            - driver: nvidia 
-              count: 1 
-              capabilities: [gpu] 
-    shm_size: "128mb" # update for your cameras based on calculation above 
-#   devices: 
-#      - /dev/bus/usb:/dev/bus/usb # passes the USB Coral, needs to be modified for other versions 
-    volumes: 
-      - /etc/localtime:/etc/localtime:ro 
-#      - /etc/frigate/trt-models:/trt-models:ro 
-      - /etc/frigate/:/config 
-      - /srv/cctv:/media/frigate 
-      - type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear 
-        target: /tmp/cache 
-        tmpfs: 
-          size: 1000000000 
-    ports: 
-      - "8971:8971" 
-      - "5000:5000" 
-      - "8554:8554" # RTSP feeds 
-      - "8555:8555/tcp" # WebRTC over tcp 
-      - "8555:8555/udp" # WebRTC over udp 
-    environment: 
-#      - FRIGATE_RTSP_PASSWORD: "Rd54bRZYghUuDWoXC2SPVr" 
-      - YOLO_MODELS=yolov7-tiny-416 
-</code>  
- 
-Create /etc/frigate/config.yml:  
-  
-<code> 
-mqtt: 
-  host: mqtt.scottworld.net 
-  user: scottbroker 
-  password: mqtt1 
- 
-#detectors: 
-#  coral: 
-#    type: edgetpu 
-#    device: usb 
- 
-detectors: 
-  tensorrt: 
-    type: tensorrt 
-    device: 0 
- 
-model: 
-  path: /config/model_cache/tensorrt/yolov7-tiny-416.trt 
-  input_tensor: nchw 
-  input_pixel_format: rgb 
-  width: 416 
-  height: 416 
- 
-ffmpeg: 
-  hwaccel_args: preset-nvidia-h264 
-  input_args: preset-http-reolink 
-  output_args: 
-    record: preset-record-generic-audio-copy 
- 
-timestamp_style: 
-  format: '%Y-%m-%d %H:%M:%S' 
- 
-go2rtc: 
-  streams: 
-    FrontCam: 
-      - http://frontcam.scottworld.net/flv?port-1935&app=bcs&stream=channel0_main.bcs&user=camera&password=camera 
-    BackCam: 
-      - http://backcam.scottworld.net/flv?port-1935&app=bcs&stream=channel0_main.bcs&user=camera&password=camera 
-    Doorbell: 
-      - http://doorbell.scottworld.net/flv?port-1935&app=bcs&stream=channel0_main.bcs&user=camera&password=camera 
-cameras: 
-  FrontCam: 
-    ffmpeg: 
-      inputs: 
-        - path: 
-            http://frontcam.scottworld.net/flv?port-1935&app=bcs&stream=channel0_ext.bcs&user=camera&password=camera 
-          roles: 
-            - detect 
-        - path: rtsp://127.0.0.1:8554/FrontCam?video=copy&audio=aac 
-          input_args: preset-rtsp-restream 
-          roles: 
-            - record 
-    motion: 
-      mask: 
-        - 1,0,0.28,0,0.297,0.041,0.297,0.096,0.508,0.201,0.509,0.138,1,0.397 
-        - 0.795,1,0.822,0.898,0.894,0.789,0.996,0.806,1,1 
-    objects: 
-      track: 
-        - person 
-        - car 
-        - bicycle 
-        - motorcycle 
-    zones: 
-      front_drive: 
-        coordinates: 896,277,896,672,0,672,0,105,250,45,244,119,470,227,482,107 
-        objects: 
-          - person 
-          - car 
-          - bicycle 
-          - motorcycle 
-    review: 
-      alerts: 
-        required_zones: 
-          - front_drive 
-  BackCam: 
-    ffmpeg: 
-      inputs: 
-        - path: 
-            http://backcam.scottworld.net/flv?port-1935&app=bcs&stream=channel0_ext.bcs&user=camera&password=camera 
-          roles: 
-            - detect 
-        - path: rtsp://127.0.0.1:8554/BackCam?video=copy&audio=aac 
-          input_args: preset-rtsp-restream 
-          roles: 
-            - record 
-    motion: 
-      mask: 
-        - 896,0,896,41,511,46,517,0 
-    objects: 
-      track: 
-        - person 
-        - cat 
-        - bird 
-    zones: 
-      back_garden: 
-        coordinates: 436,672,0,672,0,0,488,0,484,59,714,63,896,139,896,672 
-        objects: 
-          - person 
-          - cat 
-          - bird 
-    review: 
-      alerts: 
-        required_zones: 
-          - back_garden 
- 
-  Doorbell: 
-    ffmpeg: 
-      inputs: 
-        - path: 
-            http://doorbell.scottworld.net/flv?port-1935&app=bcs&stream=channel0_ext.bcs&user=camera&password=camera 
-          roles: 
-            - detect 
-        - path: rtsp://127.0.0.1:8554/Doorbell?video=copy&audio=aac 
-          input_args: preset-rtsp-restream 
-          roles: 
-            - record 
-    motion: 
-      mask: 
-        - 896,0,896,332,0,287,0,0 
-    objects: 
-      track: 
-        - person 
-    zones: 
-      front_porch: 
-        coordinates: 896,672,0,672,0,294,37,324,29,421,301,443,304,312,896,348 
-        objects: 
-          - person 
-    review: 
-      alerts: 
-        required_zones: 
-          - front_porch 
- 
-birdseye: 
-  enabled: true 
-  mode: motion 
- 
-record: 
-  enabled: true 
-  retain: 
-    days: 14 
-    mode: motion 
-  events: 
-    retain: 
-      default: 90 
-      mode: active_objects 
- 
-snapshots: 
-  enabled: true 
-version: 0.14 
-</code> 
- 
-Start Frigate with:  
-  
-  docker compose -f /etc/frigate/docker-compose.yml up -d 
-  
-Visit the Frigate interface via:  
-  
-  http://server:5000/ 
- 
-Update the Image with  
- 
-<code> 
-docker compose -f /etc/frigate/docker-compose.yml down 
-docker compose -f /etc/frigate/docker-compose.yml pull 
-docker compose -f /etc/frigate/docker-compose.yml up    (Add the -d option to start with a detach option) 
-</code> 
  
homeautomation/frigatenvr.1728763817.txt.gz · Last modified: by wikiadmin

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki