From 7eec0f88e4187f6057a49540653c28069e901f64 Mon Sep 17 00:00:00 2001 From: yourfriendoss Date: Mon, 24 Nov 2025 20:47:30 +0200 Subject: [PATCH] four --- rtsp/RTSPServer.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtsp/RTSPServer.go b/rtsp/RTSPServer.go index 04e256a..ac7bc3a 100644 --- a/rtsp/RTSPServer.go +++ b/rtsp/RTSPServer.go @@ -31,6 +31,8 @@ func CreateServer(parentCtx context.Context, host string, port int, relay *libip h := &handler{} gs := &gortsplib.Server{ Handler: h, + UDPRTPAddress: ":8000", + UDPRTCPAddress: ":8001", RTSPAddress: fmt.Sprintf("%s:%d", host, port), }