Remove references to config file. #1697

This commit is contained in:
Gabe Kangas
2022-01-31 16:01:34 -08:00
parent ade392e5db
commit 3f974ce7db
3 changed files with 3 additions and 3 deletions

View File

@ -232,7 +232,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 config file.")
log.Fatalln("Unable to determine path to ffmpeg. Please specify it in the admin or place a copy in the Owncast directory.")
}
path := strings.TrimSpace(string(out))