From 91c4e9d14db91cdcba2a703f2053ffe2180febaf Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Wed, 21 Oct 2020 13:34:39 +0200 Subject: [PATCH] Forwarding should not have the re option --- stream/forwarding/forwarding.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream/forwarding/forwarding.go b/stream/forwarding/forwarding.go index 52f6299..2a30a16 100644 --- a/stream/forwarding/forwarding.go +++ b/stream/forwarding/forwarding.go @@ -62,7 +62,7 @@ func forward(streamName string, q *messaging.Quality, fwdCfg []string) { q.Register(output) // Launch FFMPEG instance - params := []string{"-hide_banner", "-loglevel", "error", "-re", "-i", "pipe:0"} + params := []string{"-hide_banner", "-loglevel", "error", "-i", "pipe:0"} for _, url := range fwdCfg { // If the url should be date-formatted, replace special characters with the current time information now := time.Now()