mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
feat(server): warn users of ffmpeg extractor that it is not available anymore
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
0c4c223127
commit
f3cb85cb0d
1 changed files with 6 additions and 3 deletions
|
@ -29,7 +29,7 @@ type configOptions struct {
|
||||||
DbPath string
|
DbPath string
|
||||||
LogLevel string
|
LogLevel string
|
||||||
LogFile string
|
LogFile string
|
||||||
ScanInterval time.Duration
|
ScanInterval time.Duration // Deprecated: Remove before release
|
||||||
ScanSchedule string
|
ScanSchedule string
|
||||||
SessionTimeout time.Duration
|
SessionTimeout time.Duration
|
||||||
BaseURL string
|
BaseURL string
|
||||||
|
@ -130,7 +130,7 @@ type scannerOptions struct {
|
||||||
Enabled bool
|
Enabled bool
|
||||||
WatcherWait time.Duration
|
WatcherWait time.Duration
|
||||||
ScanOnStartup bool
|
ScanOnStartup bool
|
||||||
Extractor string // Deprecated: BFR Remove before release?
|
Extractor string
|
||||||
GenreSeparators string // Deprecated: BFR Update docs
|
GenreSeparators string // Deprecated: BFR Update docs
|
||||||
GroupAlbumReleases bool // Deprecated: BFR Update docs
|
GroupAlbumReleases bool // Deprecated: BFR Update docs
|
||||||
}
|
}
|
||||||
|
@ -300,7 +300,10 @@ func Load(noConfigDump bool) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// BFR Remove before release
|
// BFR Remove before release
|
||||||
Server.Scanner.Extractor = consts.DefaultScannerExtractor
|
if Server.Scanner.Extractor != consts.DefaultScannerExtractor {
|
||||||
|
log.Warn(fmt.Sprintf("Extractor '%s' is not implemented, using 'taglib'", Server.Scanner.Extractor))
|
||||||
|
Server.Scanner.Extractor = consts.DefaultScannerExtractor
|
||||||
|
}
|
||||||
|
|
||||||
// Call init hooks
|
// Call init hooks
|
||||||
for _, hook := range hooks {
|
for _, hook := range hooks {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue