From ed5ba00f7b8d1c5f5137cdce66a83f7339853084 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 16 Mar 2023 12:36:28 -0700 Subject: [PATCH] Update ffmpeg detection error to be more clear --- utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.go b/utils/utils.go index 752baffce..99fb53399 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -241,7 +241,7 @@ func ValidatedFfmpegPath(ffmpegPath string) string { cmd := exec.Command("which", "ffmpeg") out, err := cmd.CombinedOutput() if err != nil { - log.Fatalln("Unable to determine path to ffmpeg. Please specify it in the admin or place a copy in the Owncast directory.") + log.Fatalln("Unable to locate ffmpeg. Either install it globally on your system or put the ffmpeg binary in the same directory as Owncast. The binary must be named ffmpeg.") } path := strings.TrimSpace(string(out))