From 072588820c9e3234d105da75286a1dc0dba35903 Mon Sep 17 00:00:00 2001 From: Zoltan Puskas Date: Sat, 28 Oct 2023 20:22:58 -0700 Subject: [PATCH] feat(contrib): Add optional multi-valued tag options gonic 0.16.0 has added support for multi-valued tags in certain fileds. This diff adds the configuration options to the default configuration file with some explanation on how to use them. --- contrib/config | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/contrib/config b/contrib/config index 9950309e..9031113c 100644 --- a/contrib/config +++ b/contrib/config @@ -55,3 +55,16 @@ cache-path /var/cache/gonic #scan-watcher-enabled false #jukebox-enabled false #jukebox-mpv-extra-args + +# Metadata multi-value handling +# gonic supports parsing mult-valued tags in the metadata thus assigning a song +# to several genres or album artists. This improves search and reduces clutter +# in the artist/genre listing. Accepted options are: +# multi: gonic will explicitly look for multi value fields the audio metadata +# delim : gonic will look at the regular audio metadata +# fields like "genre" or "album_artist", but split +# them on a delimiter. For example to split on +# semicolon set the option value to be "delim ;" +# none: default setting, gonic won't attempt to do any multi value parsing +#multi-value-genre none +#multi-value-album-artist none