From c60e56828b76c1a64944865eeb31b5942d9a0231 Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 12 Oct 2020 10:59:42 -0400 Subject: [PATCH] Fix `ffmpeg` detection --- server/initial_setup.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/initial_setup.go b/server/initial_setup.go index 1362c99d..a95071aa 100644 --- a/server/initial_setup.go +++ b/server/initial_setup.go @@ -85,6 +85,7 @@ func checkFfmpegInstallation() { path, err := exec.LookPath("ffmpeg") if err == nil { log.Debug("Found ffmpeg", "path", path) + return } log.Warn("Unable to find ffmpeg. Transcoding will fail if used", err) if conf.Server.Scanner.Extractor == "ffmpeg" {