forked from Github/frigate
* Add support for ptz commands via websocket * Fix startup issues * Fix bugs * Set config manually * Add more commands * Add presets * Add zooming * Fixes * Set name * Cleanup * Add ability to set presets from UI * Add ability to set preset from UI * Cleanup for errors * Ui tweaks * Add visual design for pan / tilt * Add pan/tilt support * Support zooming * Try to set wsdl * Fix duplicate logs * Catch auth errors * Don't init onvif for disabled cameras * Fix layout sizing * Don't comment out * Fix formatting * Add ability to control camera with keyboard shortcuts * Disallow user selection * Fix mobile pressing * Remove logs * Substitute onvif password * Add ptz controls ot birdseye * Put wsdl back * Add padding * Formatting * Catch onvif error * Optimize layout for mobile and web * Place ptz controls next to birdseye view in large layout * Fix pt support * Center text titles * Update tests * Update docs * Write camera docs for PTZ * Add MQTT docs for PTZ * Add ptz info docs for http * Fix test * Make half width when full screen * Fix preset panel logic * Fix parsing * Update mqtt.md * Catch preset error * Add onvif example to docs * Remove template example from main camera docs
69 lines
2.1 KiB
Markdown
69 lines
2.1 KiB
Markdown
---
|
|
id: cameras
|
|
title: Cameras
|
|
---
|
|
|
|
## Setting Up Camera Inputs
|
|
|
|
Several inputs can be configured for each camera and the role of each input can be mixed and matched based on your needs. This allows you to use a lower resolution stream for object detection, but create recordings from a higher resolution stream, or vice versa.
|
|
|
|
A camera is enabled by default but can be temporarily disabled by using `enabled: False`. Existing events and recordings can still be accessed. Live streams, recording and detecting are not working. Camera specific configurations will be used.
|
|
|
|
Each role can only be assigned to one input per camera. The options for roles are as follows:
|
|
|
|
| Role | Description |
|
|
| ---------- | ---------------------------------------------------------------------------------------- |
|
|
| `detect` | Main feed for object detection |
|
|
| `record` | Saves segments of the video feed based on configuration settings. [docs](record.md) |
|
|
| `rtmp` | Deprecated: Broadcast as an RTMP feed for other services to consume. [docs](restream.md) |
|
|
|
|
```yaml
|
|
mqtt:
|
|
host: mqtt.server.com
|
|
cameras:
|
|
back:
|
|
enabled: True
|
|
ffmpeg:
|
|
inputs:
|
|
- path: rtsp://viewer:{FRIGATE_RTSP_PASSWORD}@10.0.10.10:554/cam/realmonitor?channel=1&subtype=2
|
|
roles:
|
|
- detect
|
|
- rtmp # <- deprecated, recommend using restream instead
|
|
- path: rtsp://viewer:{FRIGATE_RTSP_PASSWORD}@10.0.10.10:554/live
|
|
roles:
|
|
- record
|
|
detect:
|
|
width: 1280
|
|
height: 720
|
|
```
|
|
|
|
Additional cameras are simply added to the config under the `cameras` entry.
|
|
|
|
```yaml
|
|
mqtt: ...
|
|
cameras:
|
|
back: ...
|
|
front: ...
|
|
side: ...
|
|
```
|
|
|
|
For camera model specific settings check the [camera specific](camera_specific.md) infos.
|
|
|
|
## Setting up camera PTZ controls
|
|
|
|
Add onvif config to camera
|
|
|
|
```yaml
|
|
cameras:
|
|
back:
|
|
ffmpeg:
|
|
...
|
|
onvif:
|
|
host: 10.0.10.10
|
|
port: 8000
|
|
user: admin
|
|
password: password
|
|
```
|
|
|
|
then PTZ controls will be available in the cameras WebUI.
|