Remove not needed go2rtc stream config (#148836)

This commit is contained in:
Robert Resch 2025-07-15 23:11:55 +02:00 committed by GitHub
parent d46e0e132b
commit 7f2a32d4eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 4 deletions

View File

@ -328,7 +328,6 @@ class WebRTCProvider(CameraWebRTCProvider):
# Connection problems to the camera will be logged by the first stream # Connection problems to the camera will be logged by the first stream
# Therefore setting it to debug will not hide any important logs # Therefore setting it to debug will not hide any important logs
f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug", f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug",
f"ffmpeg:{camera.entity_id}#video=mjpeg",
], ],
) )

View File

@ -120,7 +120,6 @@ async def _test_setup_and_signaling(
[ [
"rtsp://stream", "rtsp://stream",
f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug", f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug",
f"ffmpeg:{camera.entity_id}#video=mjpeg",
], ],
) )
@ -139,7 +138,6 @@ async def _test_setup_and_signaling(
[ [
"rtsp://stream", "rtsp://stream",
f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug", f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug",
f"ffmpeg:{camera.entity_id}#video=mjpeg",
], ],
) )
@ -696,6 +694,5 @@ async def test_generic_workaround(
[ [
"ffmpeg:https://my_stream_url.m3u8", "ffmpeg:https://my_stream_url.m3u8",
f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug", f"ffmpeg:{camera.entity_id}#audio=opus#query=log_level=debug",
f"ffmpeg:{camera.entity_id}#video=mjpeg",
], ],
) )