dotfiles/beets.config.yaml

94 lines
2 KiB
YAML
Raw Normal View History

2018-10-03 10:03:21 +00:00
directory: ~/mus
library: ~/.local/share/beets/library.db
asciify_paths: yes
import:
2018-11-03 23:16:19 +00:00
log: ~/.log/beets/import.log
# imported directories are recorded and these are skipped on later imports
2018-10-03 10:03:21 +00:00
incremental: yes
2018-11-03 23:16:19 +00:00
# record skipped directories in the incremental list
incremental_skip_later: yes
# move files into the library directory when using beet import
2018-10-03 10:03:21 +00:00
move: yes
2018-11-03 23:16:19 +00:00
# ask for confirmation on every autotagging match
timid: yes
2018-10-03 10:03:21 +00:00
musicbrainz:
searchlimit: 10
2018-11-03 23:16:19 +00:00
# yes: set to release date of “release group”
# no: … of “release”
original_date: yes
2018-10-03 10:03:21 +00:00
replace:
'^!!!$': 'Chk_Chk_Chk'
'[#"()\[\]<>:\*\|{}\\!\?]': _
"'": _
2018-10-03 10:03:21 +00:00
'[\\/]': _
'[\.,]': _
'[\x00-\x1f]': _
'&': '_and_'
2018-11-01 23:46:29 +00:00
'\+': '_plus_'
2018-10-03 10:03:21 +00:00
'\s+': _
'[-_]+': _
'^[-_](?!$)': ''
'(?<!^)[-_]$': ''
2018-10-03 10:03:21 +00:00
2018-11-03 23:16:19 +00:00
# first (non-pregap) track on each disc always has track number 1
2018-10-03 11:46:37 +00:00
per_disc_numbering: yes
2018-11-03 23:16:19 +00:00
# provided by plugin “inline”
2018-10-03 10:03:21 +00:00
item_fields:
multidisc: disctotal > 1
2018-10-03 10:03:21 +00:00
paths:
default: $albumartist/$album%aunique{}/%if{$multidisc,${disc}_}_${track}_-_${title}
singleton: $artist/etc/$title
2018-10-03 10:03:21 +00:00
comp: various_artists/$album%aunique{}/%if{$multidisc,${disc}_}_${track}_-_${title}
va_name: various artists
languages: ["nl", "en"]
bell: yes
2018-11-03 23:16:19 +00:00
plugins: edit inline the types fetchart lyrics mpdupdate mbsync mbsubmit badfiles absubmit acousticbrainz replaygain permissions fromfilename lastgenre play fuzzy info
edit:
itemfields: track disc title artist album mb_trackid
albumfields: album albumartist disctotal year country mb_albumid
2018-10-03 10:03:21 +00:00
mpd:
host: localhost
port: 6600
badfiles:
commands:
ogg: oggz-validate
2018-11-03 23:16:19 +00:00
opus: opusinfo
2018-10-03 10:03:21 +00:00
lastgenre:
source: track
the:
strip: yes
patterns: ^de ^een
types:
rating: float
2018-10-05 22:11:23 +00:00
replaygain:
backend: gstreamer
permissions:
file: 644
dir: 755
play:
command: mpv --vid=no
2018-11-02 00:32:19 +00:00
fetchart:
maxwidth: 500
enforce_ratio: 1%
sources: filesystem coverart albumart wikipedia
# vim: set ft=yaml et sw=2 ts=2 :