Skip to content

Commit

Permalink
feat(contrib): Add optional multi-valued tag options
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
zpuskas committed Oct 29, 2023
1 parent a003583 commit 0725888
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions contrib/config
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,16 @@ cache-path /var/cache/gonic
#scan-watcher-enabled false
#jukebox-enabled false
#jukebox-mpv-extra-args <extra command line arguments to pass to the jukebox mpv daemon>

# 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 <delimiter character>: 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

0 comments on commit 0725888

Please sign in to comment.