Browse Source

Do not panic. Closes #295

pull/297/head
Gabe Kangas 5 years ago
parent
commit
6c5253c7e0
  1. 2
      config/defaults.go

2
config/defaults.go

@ -40,7 +40,7 @@ func getDefaultFFMpegPath() string { @@ -40,7 +40,7 @@ func getDefaultFFMpegPath() string {
cmd := exec.Command("which", "ffmpeg")
out, err := cmd.CombinedOutput()
if err != nil {
log.Panicln("Unable to determine path to ffmpeg. Please specify it in the config file.")
log.Debugln("Unable to determine path to ffmpeg. Please specify it in the config file.")
}
path := strings.TrimSpace(string(out))

Loading…
Cancel
Save