diff --git a/Makefile b/Makefile index 73729b225..68e950c2c 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ default_target: amd64_frigate COMMIT_HASH := $(shell git log -1 --pretty=format:"%h"|tail -1) version: - echo "VERSION='0.10.0-$(COMMIT_HASH)'" > frigate/version.py + echo "VERSION='0.11.0-$(COMMIT_HASH)'" > frigate/version.py web: docker build --tag frigate-web --file docker/Dockerfile.web web/ diff --git a/docs/docs/configuration/advanced.md b/docs/docs/configuration/advanced.md index 18521b7d5..790b494f7 100644 --- a/docs/docs/configuration/advanced.md +++ b/docs/docs/configuration/advanced.md @@ -43,6 +43,11 @@ If you are storing your database on a network share (SMB, NFS, etc), you may get This may need to be in a custom location if network storage is used for the media folder. +```yaml +database: + path: /path/to/frigate.db +``` + ### `model` If using a custom model, the width and height will need to be specified. diff --git a/docs/docs/configuration/camera_specific.md b/docs/docs/configuration/camera_specific.md index a82a58f84..465e0a5ce 100644 --- a/docs/docs/configuration/camera_specific.md +++ b/docs/docs/configuration/camera_specific.md @@ -19,6 +19,34 @@ output_args: rtmp: -c:v libx264 -an -f flv ``` +### JPEG Stream Cameras + +Cameras using a live changing jpeg image will need input parameters as below + +```yaml +input_args: +- -r +- 5 # << enter FPS here +- -stream_loop +- -1 +- -f +- image2 +- -avoid_negative_ts +- make_zero +- -fflags +- nobuffer +- -flags +- low_delay +- -strict +- experimental +- -fflags +- +genpts+discardcorrupt +- -use_wallclock_as_timestamps +- 1 +``` + +Outputting the stream will have the same args and caveats as per [MJPEG Cameras](#mjpeg-cameras) + ### RTMP Cameras The input parameters need to be adjusted for RTMP cameras diff --git a/docs/docs/configuration/index.md b/docs/docs/configuration/index.md index e334d88ee..5d8638745 100644 --- a/docs/docs/configuration/index.md +++ b/docs/docs/configuration/index.md @@ -238,6 +238,11 @@ motion: # NOTE: Can be overridden at the camera level record: # Optional: Enable recording (default: shown below) + # WARNING: Frigate does not currently support limiting recordings based + # on available disk space automatically. If using recordings, + # you must specify retention settings for a number of days that + # will fit within the available disk space of your drive or Frigate + # will crash. enabled: False # Optional: Number of minutes to wait between cleanup runs (default: shown below) # This can be used to reduce the frequency of deleting recording segments from disk if you want to minimize i/o diff --git a/docs/docs/configuration/objects.mdx b/docs/docs/configuration/objects.mdx index fd42a4399..1d236bf42 100644 --- a/docs/docs/configuration/objects.mdx +++ b/docs/docs/configuration/objects.mdx @@ -5,7 +5,11 @@ title: Objects import labels from "../../../labelmap.txt"; -By default, Frigate includes the following object models from the Google Coral test data. Note that `car` is listed twice because `truck` has been renamed to `car` by default. These object types are frequently confused. +Frigate includes the object models listed below from the Google Coral test data. + +Please note: + - `car` is listed twice because `truck` has been renamed to `car` by default. These object types are frequently confused. + - `person` is the only tracked object by default. See the [full configuration reference](https://docs.frigate.video/configuration/index#full-configuration-reference) for an example of expanding the list of tracked objects.