Investigate of why I don't have any audio

This commit is contained in:
Yohann D'ANELLO 2020-11-09 15:57:30 +01:00
parent 33f86a0742
commit 85a5606291
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ func forward(streamName string, q *messaging.Quality, fwdCfg []string) {
formattedURL = strings.ReplaceAll(formattedURL, "%name", streamName)
params = append(params, "-f", "flv",
"-c:v", "copy", "-c:a", "aac", "-b:a", "160k,", "-ar", "44100", formattedURL)
"-c:v", "copy", "-c:a", "aac", "-b:a", "160k", "-ar", "44100", formattedURL)
}
ffmpeg := exec.Command("ffmpeg", params...)