Advertisement
WazabiQc

Frigateconf

Jun 27th, 2025
8
0
29 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. detectors:
  2. coral:
  3. type: edgetpu
  4. device: usb
  5. mqtt:
  6. enabled: true
  7. host: mosquitto # IP or hostname of your MQTT broker
  8. port: 1883 # Default MQTT port
  9. topic_prefix: frigate # Prefix for all topics Frigate publishes
  10. client_id: frigate # Unique MQTT client ID
  11. user: ****** # Username you set in Mosquitto
  12. password: ****** # Password you set in Mosquitto
  13. stats_interval: 60 # How often Frigate sends stats (in seconds)
  14.  
  15. go2rtc:
  16. streams:
  17. Sous_Sol:
  18. - "ffmpeg:http://192.168.50.170/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=admin&password=********#video=copy#audio=copy#audio=opus"
  19. - "ffmpeg:Sous_Sol#audio=opus"
  20. Sous_Sol_Sub:
  21. - "ffmpeg:http://192.168.50.170/flv?port=1935&app=bcs&stream=channel0_ext.bcs&user=admin&password=*******"
  22. cameras:
  23. Sous-Sol:
  24. ffmpeg:
  25. output_args:
  26. record: preset-record-generic-audio-copy
  27. inputs:
  28. - path: rtsp://127.0.0.1:8554/Sous_Sol
  29. input_args: preset-rtsp-restream
  30. roles:
  31. - record
  32. - audio
  33. - path: rtsp://127.0.0.1:8554/Sous_Sol_Sub
  34. input_args: preset-rtsp-restream
  35. roles:
  36. - detect
  37. detect:
  38. enabled: true
  39. max_disappeared: 25 # optional, tracking setting
  40. width: 640 # adjust if you know the resolution of Sous_Sol_Sub
  41. height: 480 # adjust accordingly
  42. fps: 15 # adjust detection FPS if you want
  43. objects:
  44. track:
  45. - person
  46. - bird
  47. record:
  48. enabled: True
  49. retain:
  50. days: 1
  51. mode: motion
  52. alerts:
  53. retain:
  54. days: 1
  55. mode: motion
  56. detections:
  57. retain:
  58. days: 1
  59. mode: motion
  60. version: 0.15-1
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement