mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Refactor a bit how ffmpeg is used to get metadata
- createProbeCommand returns a []string instead of (string, string[]) - Simplify the loop of createProbeCommand
This commit is contained in:
parent
6a3a66975c
commit
04eb421186
2 changed files with 11 additions and 18 deletions
|
@ -29,7 +29,7 @@ type nd struct {
|
|||
|
||||
TranscodingCacheSize string `default:"100MB"` // in MB
|
||||
ImageCacheSize string `default:"100MB"` // in MB
|
||||
ProbeCommand string `default:"ffmpeg -i %s -f ffmetadata"`
|
||||
ProbeCommand string `default:"ffmpeg %s -f ffmetadata"`
|
||||
|
||||
// DevFlags. These are used to enable/disable debugging and incomplete features
|
||||
DevLogSourceLine bool `default:"false"`
|
||||
|
|
|
@ -74,10 +74,10 @@ func LoadAllAudioFiles(dirPath string) (map[string]os.FileInfo, error) {
|
|||
}
|
||||
|
||||
func ExtractAllMetadata(inputs []string) (map[string]*Metadata, error) {
|
||||
cmdLine, args := createProbeCommand(inputs)
|
||||
args := createProbeCommand(inputs)
|
||||
|
||||
log.Trace("Executing command", "arg0", cmdLine, "args", args)
|
||||
cmd := exec.Command(cmdLine, args...)
|
||||
log.Trace("Executing command", "args", args)
|
||||
cmd := exec.Command(args[0], args[1:]...)
|
||||
output, _ := cmd.CombinedOutput()
|
||||
mds := map[string]*Metadata{}
|
||||
if len(output) == 0 {
|
||||
|
@ -269,25 +269,18 @@ func (m *Metadata) parseDuration(tagName string) float32 {
|
|||
}
|
||||
|
||||
// Inputs will always be absolute paths
|
||||
func createProbeCommand(inputs []string) (string, []string) {
|
||||
cmd := conf.Server.ProbeCommand
|
||||
|
||||
split := strings.Split(cmd, " ")
|
||||
func createProbeCommand(inputs []string) []string {
|
||||
split := strings.Split(conf.Server.ProbeCommand, " ")
|
||||
args := make([]string, 0)
|
||||
first := true
|
||||
|
||||
for _, s := range split {
|
||||
if s == "%s" {
|
||||
for _, inp := range inputs {
|
||||
if !first {
|
||||
args = append(args, "-i")
|
||||
}
|
||||
args = append(args, inp)
|
||||
first = false
|
||||
args = append(args, "-i", inp)
|
||||
}
|
||||
continue
|
||||
} else {
|
||||
args = append(args, s)
|
||||
}
|
||||
args = append(args, s)
|
||||
}
|
||||
|
||||
return args[0], args[1:]
|
||||
return args
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue