add notes for Blue Iris RTSP support

This commit is contained in:
Leonardo Merza 2020-12-24 19:13:04 -05:00 committed by Blake Blackshear
parent 19bbfce4ed
commit ec256f7130

View File

@ -5,7 +5,7 @@ Frigate should work with most RTSP cameras and h264 feeds such as Dahua.
The input parameters need to be adjusted for RTMP cameras The input parameters need to be adjusted for RTMP cameras
```yaml ```yaml
ffmpeg: ffmpeg:
input_args: input_args:
- -avoid_negative_ts - -avoid_negative_ts
- make_zero - make_zero
- -fflags - -fflags
@ -19,3 +19,24 @@ input_args:
- -use_wallclock_as_timestamps - -use_wallclock_as_timestamps
- '1' - '1'
``` ```
## Blue Iris RTSP Cameras
You will need to remove `nobuffer` flag for Blue Iris RTSP cameras
```yaml
ffmpeg:
input_args:
- -avoid_negative_ts
- make_zero
- -flags
- low_delay
- -strict
- experimental
- -fflags
- +genpts+discardcorrupt
- -rtsp_transport
- tcp
- -stimeout
- "5000000"
- -use_wallclock_as_timestamps
- "1"
```