Forwarding should not have the re option

This commit is contained in:
Yohann D'ANELLO 2020-10-21 13:34:39 +02:00
parent 5ea8a0913b
commit 91c4e9d14d
1 changed files with 1 additions and 1 deletions

View File

@ -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()