mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Add Low latency preset (#5367)
* Create new low latency preset * Update chart for new preset
This commit is contained in:
parent
74d6ab0555
commit
db131d4971
@ -28,16 +28,17 @@ Input args presets help make the config more readable and handle use cases for d
|
|||||||
|
|
||||||
See [the camera specific docs](/configuration/camera_specific.md) for more info on non-standard cameras and recommendations for using them in Frigate.
|
See [the camera specific docs](/configuration/camera_specific.md) for more info on non-standard cameras and recommendations for using them in Frigate.
|
||||||
|
|
||||||
| Preset | Usage | Other Notes |
|
| Preset | Usage | Other Notes |
|
||||||
| ------------------------- | ------------------------- | --------------------------------------------------- |
|
| -------------------------------- | ------------------------- | ------------------------------------------------------------------------------------------------ |
|
||||||
| preset-http-jpeg-generic | HTTP Live Jpeg | Recommend restreaming live jpeg instead |
|
| preset-http-jpeg-generic | HTTP Live Jpeg | Recommend restreaming live jpeg instead |
|
||||||
| preset-http-mjpeg-generic | HTTP Mjpeg Stream | Recommend restreaming mjpeg stream instead |
|
| preset-http-mjpeg-generic | HTTP Mjpeg Stream | Recommend restreaming mjpeg stream instead |
|
||||||
| preset-http-reolink | Reolink HTTP-FLV Stream | Only for reolink http, not when restreaming as rtsp |
|
| preset-http-reolink | Reolink HTTP-FLV Stream | Only for reolink http, not when restreaming as rtsp |
|
||||||
| preset-rtmp-generic | RTMP Stream | |
|
| preset-rtmp-generic | RTMP Stream | |
|
||||||
| preset-rtsp-generic | RTSP Stream | This is the default when nothing is specified |
|
| preset-rtsp-generic | RTSP Stream | This is the default when nothing is specified |
|
||||||
| preset-rtsp-restream | RTSP Stream from restream | Use when using rtsp restream as source |
|
| preset-rtsp-restream | RTSP Stream from restream | Use for rtsp restream as source for frigate |
|
||||||
| preset-rtsp-udp | RTSP Stream via UDP | Use when camera is UDP only |
|
| preset-rtsp-restream-low-latency | RTSP Stream from restream | Use for rtsp restream as source for frigate to lower latency, may cause issues with some cameras |
|
||||||
| preset-rtsp-blue-iris | Blue Iris RTSP Stream | Use when consuming a stream from Blue Iris |
|
| preset-rtsp-udp | RTSP Stream via UDP | Use when camera is UDP only |
|
||||||
|
| preset-rtsp-blue-iris | Blue Iris RTSP Stream | Use when consuming a stream from Blue Iris |
|
||||||
|
|
||||||
:::caution
|
:::caution
|
||||||
|
|
||||||
|
@ -231,6 +231,13 @@ PRESETS_INPUT = {
|
|||||||
"1",
|
"1",
|
||||||
],
|
],
|
||||||
"preset-rtsp-restream": _user_agent_args
|
"preset-rtsp-restream": _user_agent_args
|
||||||
|
+ [
|
||||||
|
"-rtsp_transport",
|
||||||
|
"tcp",
|
||||||
|
TIMEOUT_PARAM,
|
||||||
|
"5000000",
|
||||||
|
],
|
||||||
|
"preset-rtsp-restream-low-latency": _user_agent_args
|
||||||
+ [
|
+ [
|
||||||
"-rtsp_transport",
|
"-rtsp_transport",
|
||||||
"tcp",
|
"tcp",
|
||||||
|
Loading…
Reference in New Issue
Block a user