From f1dcf4707cae7181ff0829b618aac0f5bc18fdcf Mon Sep 17 00:00:00 2001 From: Giuseppe Coviello Date: Fri, 16 Feb 2024 12:54:18 -0500 Subject: [PATCH] Use tcp only --- utils.go | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.go b/utils.go index 8568cd3..15e8674 100644 --- a/utils.go +++ b/utils.go @@ -43,6 +43,7 @@ func ffprobe(filename, stype string) ([]map[string]string, error) { // Extract video information with ffprobe. cmd := exec.Command( "ffprobe", + "-rtsp_transport", "tcp", "-show_streams", "-select_streams", stype, "-print_format", "compact",