1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Example Settings File
# General Daemon Settings
[]
## The port to listen on for RPC requests. (default: 6600, the default port for MPD)
= 6600
## The root paths of the music library.
= ["~/Music"]
## Separators for artist names in song metadata.
## For example, "Foo, Bar, Baz" would be split into ["Foo", "Bar", "Baz"]. if the separator is ", ".
## If the separator is not found, the entire string is considered as a single artist.
## If unset, will not split artists.
##
## Users can provide one or many separators, and must provide them as either a single string or an array of strings.
##
## ```toml
## [daemon]
## artist_separator = " & "
## # or
## artist_separator = [" & ", "; "]
## ```
= ["; ", ", ", " & ", " feat. ", " ft. "]
## Separators for genres in song metadata.
## For example, "Foo, Bar, Baz" would be split into ["Foo", "Bar", "Baz"]. if the separator is ", ".
## If the separator is not found, the entire string is considered as a single genre.
## If unset, will not split genres.
= ", "
## how conflicting metadata should be resolved
## "overwrite" - overwrite the metadata with new metadata
## "skip" - skip the file (keep old metadata)
= "overwrite"
## What level of logging to use.
## Possible values are "trace", "debug", "info", "warn", "error".
## Default is "info".
= "info"
# Parameters for the reclustering algorithm.
[]
## The number of reference datasets to use for the gap statistic.
## (which is used to determine the optimal number of clusters)
## 50 will give a decent estimate but for the best results use more,
## 500 will give a very good estimate but be very slow.
## We default to 50.
= 50
## The maximum number of clusters to create.
## This is the upper bound on the number of clusters that can be created.
## Increase if you're getting a "could not find optimal k" error.
## Default is 24.
= 24
## The clustering algorithm to use.
## Either "kmeans" or "gmm".
= "gmm"
# Settings for the TUI
[]
## How many songs should be queried for when starting a radio.
## Default is 20.
= 20