From b2dbee028c10c2b031f63aaf9bd24f2984be83d5 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Fri, 31 Dec 2021 13:08:21 -0800 Subject: [PATCH] Update developer docs to mention RTSP to WebRTC --- docs/core/entity/camera.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/core/entity/camera.md b/docs/core/entity/camera.md index 5da1188d..6f8705f1 100644 --- a/docs/core/entity/camera.md +++ b/docs/core/entity/camera.md @@ -91,6 +91,10 @@ class MyCamera(Camera): """Handle the WebRTC offer and return an answer.""" ``` +### RTSP to WebRTC + +An integration may provide a WebRTC stream for any RTSP camera using `async_register_rtsp_to_web_rtc_provider`. The current best practice is for an integration to provide the actual stream manipulation with an Add-on or external service. + ### Turn on ```python