Advertisement
Guest User

Untitled

a guest
May 11th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. onvif:
  2. # # Required: host of the camera being connected to.
  3. host: my_host
  4. # # Optional: ONVIF port for device (default: shown below).
  5. port: 80
  6. # # Optional: username for login.
  7. # # NOTE: Some devices require admin to access ONVIF.
  8. user: myuser
  9. # # Optional: password for login.
  10. password: My_password
  11. # # Optional: PTZ camera object autotracking. Keeps a moving object in
  12. # # the center of the frame by automatically moving the PTZ camera.
  13. autotracking:
  14. # # Optional: enable/disable object autotracking. (default: shown below)
  15. enabled: true
  16. # Optional: calibrate the camera on startup (default: shown below)
  17. # A calibration will move the PTZ in increments and measure the time it takes to move.
  18. # The results are used to help estimate the position of tracked objects after a camera move.
  19. # Frigate will update your config file automatically after a calibration with
  20. # a "movement_weights" entry for the camera. You should then set calibrate_on_startup to False.
  21. calibrate_on_startup: false
  22. # Optional: the mode to use for zooming in/out on objects during autotracking. (default: shown below)
  23. # Available options are: disabled, absolute, and relative
  24. # disabled - don't zoom in/out on autotracked objects, use pan/tilt only
  25. # absolute - use absolute zooming (supported by most PTZ capable cameras)
  26. # relative - use relative zooming (not supported on all PTZs, but makes concurrent pan/tilt/zoom movements)
  27. zooming: relative
  28. # Optional: A value to change the behavior of zooming on autotracked objects. (default: shown below)
  29. # A lower value will keep more of the scene in view around a tracked object.
  30. # A higher value will zoom in more on a tracked object, but Frigate may lose tracking more quickly.
  31. # The value should be between 0.1 and 0.75
  32. zoom_factor: 0.40
  33. # Optional: list of objects to track from labelmap.txt (default: shown below)
  34. track:
  35. - person
  36. - bird
  37. - cat
  38. # Required: Begin automatically tracking an object when it enters any of the listed zones.
  39. required_zones:
  40. - test
  41. # - person
  42. # coordinates: 609,346,614,60,46,32,95,300
  43. # Required: Name of ONVIF preset in camera's firmware to return to when tracking is over. (default: shown below)
  44. return_preset: preset1
  45. # Optional: Seconds to delay before returning to preset. (default: shown below)
  46. timeout: 10
  47. # Optional: Values generated automatically by a camera calibration. Do not modify these manually. (default: shown below)
  48. movement_weights: 0.25, 1.0, 6.525627374649048, 5.843108956531812, 0.3336184893884972
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement