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:
jvoisin 2020-04-11 12:42:47 +02:00 committed by Deluan Quintão
parent 6a3a66975c
commit 04eb421186
2 changed files with 11 additions and 18 deletions

View file

@ -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"`