From fca3473dad59fca503397cb9cd2405b65cec8308 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 18 Jan 2021 17:11:25 -0800 Subject: [PATCH] fix ffmpeg version check throwing warnings. closes #641 --- config/verifyInstall.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/config/verifyInstall.go b/config/verifyInstall.go index 90bbce312..bfde2a8f6 100644 --- a/config/verifyInstall.go +++ b/config/verifyInstall.go @@ -35,10 +35,7 @@ func verifyFFMpegPath(path string) error { } cmd := exec.Command(path) - out, err := cmd.CombinedOutput() - if err != nil { - return fmt.Errorf("unable to determine the version of your ffmpeg installation at %s. you may experience issues with video.", path) - } + out, _ := cmd.CombinedOutput() response := string(out) if response == "" {