From 234e4f4f8d6f3fe670915a83e48bfffd8ca8538d Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Sat, 9 Jul 2022 17:13:11 +0200 Subject: [PATCH] client: fix RTSPS default port --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 91b1b987..aa42c632 100644 --- a/client.go +++ b/client.go @@ -951,7 +951,7 @@ func (c *Client) connOpen() error { if c.scheme == "rtsp" { c.host = net.JoinHostPort(c.host, "554") } else { // rtsps - c.host = net.JoinHostPort(c.host, "8322") + c.host = net.JoinHostPort(c.host, "322") } }