mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add ffmpeg
detection at start-up
This commit is contained in:
parent
26d2af17a3
commit
fea5d23fc7
3 changed files with 15 additions and 2 deletions
|
@ -3,6 +3,7 @@ package server
|
|||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os/exec"
|
||||
"time"
|
||||
|
||||
"github.com/deluan/navidrome/conf"
|
||||
|
@ -79,3 +80,15 @@ func createJWTSecret(ds model.DataStore) error {
|
|||
}
|
||||
return err
|
||||
}
|
||||
|
||||
func checkFfmpegInstallation() {
|
||||
path, err := exec.LookPath("ffmpeg")
|
||||
if err == nil {
|
||||
log.Debug("Found ffmpeg", "path", path)
|
||||
}
|
||||
log.Warn("Unable to find ffmpeg. Transcoding will fail if used", err)
|
||||
if conf.Server.Scanner.Extractor == "ffmpeg" {
|
||||
log.Warn("ffmpeg cannot be used for metadata extraction. Falling back to taglib")
|
||||
conf.Server.Scanner.Extractor = "taglib"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue