From 05f02fb95677a3af7a9d4d76a73802d0a51863f5 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 21 Apr 2025 21:44:49 -0500 Subject: [PATCH] Update live view docs (#17847) Update docs with example on transcoding to AAC with go2rtc. --- docs/docs/configuration/live.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/docs/configuration/live.md b/docs/docs/configuration/live.md index b5fa0cdd7..cdf2d537d 100644 --- a/docs/docs/configuration/live.md +++ b/docs/docs/configuration/live.md @@ -42,6 +42,16 @@ go2rtc: - "ffmpeg:http_cam#audio=opus" # <- copy of the stream which transcodes audio to the missing codec (usually will be opus) ``` +If your camera does not support AAC audio or are having problems with Live view, try transcoding to AAC audio directly: + +```yaml +go2rtc: + streams: + rtsp_cam: # <- for RTSP streams + - "ffmpeg:rtsp://192.168.1.5:554/live0#video=copy#audio=aac" # <- copies video stream and transcodes to aac audio + - "ffmpeg:rtsp_cam#audio=opus" # <- provides support for WebRTC +``` + If your camera does not have audio and you are having problems with Live view, you should have go2rtc send video only: ```yaml