From 1b95675ef6790651825d807c4f1cfaaa77d1e4c7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 2 Sep 2025 12:46:01 +1200 Subject: [PATCH] Update overlay service to use MediaMTX v3 API --- squashkiwi-streaming/config/overlay/overlay_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/squashkiwi-streaming/config/overlay/overlay_service.py b/squashkiwi-streaming/config/overlay/overlay_service.py index cd25c39..919dff0 100644 --- a/squashkiwi-streaming/config/overlay/overlay_service.py +++ b/squashkiwi-streaming/config/overlay/overlay_service.py @@ -84,7 +84,7 @@ class ScoreOverlayService: try: timeout = aiohttp.ClientTimeout(total=2) async with aiohttp.ClientSession(timeout=timeout) as session: - url = f"{self.mediamtx_api}/v2/paths/list" + url = f"{self.mediamtx_api}/v3/paths/list" async with session.get(url) as resp: if resp.status == 200: data = await resp.json()