We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5182a3e commit 635f8d3Copy full SHA for 635f8d3
1 file changed
custom_components/eufy_security/eufy_security_api/p2p_streamer.py
@@ -73,7 +73,7 @@ async def _create_stream_on_go2rtc(self):
73
result = response.status, await response.text()
74
_LOGGER.debug(f"create_stream_on_go2rtc - delete stream response {result}")
75
76
- parameters = {"name": str(self.camera.serial_no), "src": str(self.camera.serial_no)}
+ parameters = {"name": str(self.camera.serial_no), "src": "tcp://127.0.0.1:65535"}
77
url = GO2RTC_API_URL.format(self.camera.config.rtsp_server_address, GO2RTC_API_PORT)
78
url = f"{url}s"
79
async with aiohttp.ClientSession() as session:
0 commit comments