mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Use ffmpeg
extractor by default on Windows
This is to avoid issue with unicode chars in filenames. See #810
This commit is contained in:
parent
d3975d206a
commit
4ed01bad86
4 changed files with 23 additions and 13 deletions
|
@ -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
5
conf/defaults.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
// +build !windows
|
||||
|
||||
package conf
|
||||
|
||||
const DefaultScannerExtractor = "taglib"
|
5
conf/defaults_win.go
Normal file
5
conf/defaults_win.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
// +build windows
|
||||
|
||||
package conf
|
||||
|
||||
const DefaultScannerExtractor = "ffmpeg"
|
Loading…
Add table
Add a link
Reference in a new issue