You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update readme features
* Remove RTMP setup from setup guide
* Update integration for RTSP
* Remove rtmp from faq
* Remove RTMP stream from guide
* Remove rtmp from install
* Remove rtmp from dev config
Copy file name to clipboardExpand all lines: docs/docs/guides/getting_started.md
+1-6
Original file line number
Diff line number
Diff line change
@@ -68,9 +68,6 @@ cameras:
68
68
- path: rtsp://10.0.10.10:554/rtsp # <----- Update for your camera
69
69
roles:
70
70
- detect
71
-
- rtmp
72
-
rtmp:
73
-
enabled: False # <-- RTMP should be disabled if your stream is not H264
74
71
detect:
75
72
width: 1280# <---- update for your camera's resolution
76
73
height: 720# <---- update for your camera's resolution
@@ -80,7 +77,7 @@ cameras:
80
77
81
78
At this point you should be able to start Frigate and see the the video feed in the UI.
82
79
83
-
If you get a green image from the camera, this means ffmpeg was not able to get the video feed from your camera. Check the logs for error messages from ffmpeg. The default ffmpeg arguments are designed to work with H264 RTSP cameras that support TCP connections. If you do not have H264 cameras, make sure you have disabled RTMP. It is possible to enable it, but you must tell ffmpeg to re-encode the video with customized output args.
80
+
If you get an error image from the camera, this means ffmpeg was not able to get the video feed from your camera. Check the logs for error messages from ffmpeg. The default ffmpeg arguments are designed to work with H264 RTSP cameras that support TCP connections.
84
81
85
82
FFmpeg arguments for other types of cameras can be found [here](../configuration/camera_specific.md).
86
83
@@ -148,7 +145,6 @@ cameras:
148
145
- path: rtsp://10.0.10.10:554/rtsp
149
146
roles:
150
147
- detect
151
-
- rtmp
152
148
detect:
153
149
width: 1280
154
150
height: 720
@@ -173,7 +169,6 @@ cameras:
173
169
- path: rtsp://10.0.10.10:554/rtsp
174
170
roles:
175
171
- detect
176
-
- rtmp
177
172
- path: rtsp://10.0.10.10:554/high_res_stream # <----- Add high res stream
|RTMP URL Template | A [jinja2](https://jinja.palletsprojects.com/) template that is used to override the standard RTMP stream URL (e.g. for use with reverse proxies). This option is only shown to users who have [advanced mode](https://www.home-assistant.io/blog/2019/07/17/release-96/#advanced-mode) enabled. See [RTMP streams](#streams) below. |
67
+
|RTSP URL Template | A [jinja2](https://jinja.palletsprojects.com/) template that is used to override the standard RTMP stream URL (e.g. for use with reverse proxies). This option is only shown to users who have [advanced mode](https://www.home-assistant.io/blog/2019/07/17/release-96/#advanced-mode) enabled. See [RTSP streams](#streams) below. |
Copy file name to clipboardExpand all lines: docs/docs/troubleshooting/faqs.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ A solid green image means that Frigate has not received any frames from ffmpeg.
13
13
14
14
### How can I get sound or audio in my recordings? {#audio-in-recordings}
15
15
16
-
By default, Frigate removes audio from recordings to reduce the likelihood of failing for invalid data. If you would like to include audio, you need to override the output args to remove `-an` for where you want to include audio. The recommended audio codec is `aac`. Not all audio codecs are supported by RTMP, so you may need to re-encode your audio with `-c:a aac`. The default ffmpeg args are shown [here](../configuration/index.md/#full-configuration-reference).
16
+
By default, Frigate removes audio from recordings to reduce the likelihood of failing for invalid data. If you would like to include audio, you need to override the output args to remove `-an` for where you want to include audio. The recommended audio codec is `aac`. The default ffmpeg args are shown [here](../configuration/index.md/#full-configuration-reference).
0 commit comments