From 4443abbc49f12705cc0fbaa8a13cf79d8ba21a85 Mon Sep 17 00:00:00 2001 From: Leonardo Merza Date: Thu, 24 Dec 2020 19:13:04 -0500 Subject: [PATCH] add notes for Blue Iris RTSP support --- docs/cameras.md | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/docs/cameras.md b/docs/cameras.md index 1fc7b7cab..075d6632f 100644 --- a/docs/cameras.md +++ b/docs/cameras.md @@ -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 ```yaml ffmpeg: -input_args: + input_args: - -avoid_negative_ts - make_zero - -fflags @@ -18,4 +18,25 @@ input_args: - +genpts+discardcorrupt - -use_wallclock_as_timestamps - '1' -``` \ No newline at end of file +``` + +## 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" +```