Use ffmpeg extractor by default on Windows

This is to avoid issue with unicode chars in filenames. See #810
This commit is contained in:
Deluan 2021-07-24 11:35:49 -04:00
parent d3975d206a
commit 4ed01bad86
4 changed files with 23 additions and 13 deletions

View file

@ -214,7 +214,7 @@ func init() {
viper.SetDefault("reverseproxyuserheader", "Remote-User")
viper.SetDefault("reverseproxywhitelist", "")
viper.SetDefault("scanner.extractor", "taglib")
viper.SetDefault("scanner.extractor", DefaultScannerExtractor)
viper.SetDefault("scanner.genreseparators", ";/,")
viper.SetDefault("agents", "lastfm,spotify")

5
conf/defaults.go Normal file
View file

@ -0,0 +1,5 @@
// +build !windows
package conf
const DefaultScannerExtractor = "taglib"

5
conf/defaults_win.go Normal file
View file

@ -0,0 +1,5 @@
// +build windows
package conf
const DefaultScannerExtractor = "ffmpeg"