Last active
March 7, 2025 09:16
-
-
Save Kovrinic/03d94cf203f99b709ce5 to your computer and use it in GitHub Desktop.
my beets config file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Beets configuration -------------------------------------------------------- | |
# beets version 1.4.7 | |
# Python version 3.7.0 | |
# Matthew Rothfuss 10/03/2018 | |
directory: /datastore/media/pmslib/Music | |
library: /datastore/media/pmslib/Music/musiclibrary.blb | |
asciify_paths: yes | |
threaded: yes | |
per_disc_numbering: yes | |
import: | |
# write metadata to music files | |
write: yes | |
# move imported files from source to the music directory | |
move: yes | |
resume: ask | |
log: beetslog.log | |
# Plugins -------------------------------------------------------------------- | |
plugins: [ | |
info, | |
beatport, | |
fetchart, | |
embedart, | |
ftintitle, | |
lastgenre, | |
missing, | |
chroma, | |
scrub, | |
zero, | |
plexupdate, | |
duplicates, | |
discogs, | |
mbcollection, | |
convert, | |
permissions | |
] | |
fetchart: | |
auto: yes | |
cover_names: cover front album art | |
minwidth: 500 | |
enforce_ratio: yes | |
fanarttv_key: REDACTED | |
google_key: REDACTED | |
sources: coverart albumart amazon google fanarttv filesystem | |
embedart: | |
auto: yes | |
compare_threshold: 50 | |
ifempty: yes | |
ftintitle: | |
auto: yes | |
format: (feat. {0}) | |
lastgenre: | |
auto: yes | |
count: 1 | |
force: no | |
source: track | |
missing: | |
format: $albumartist - $album - $title | |
count: yes | |
total: no | |
chroma: | |
auto: yes | |
acoustid: | |
apikey: REDACTED | |
scrub: | |
auto: yes | |
zero: | |
fields: comments | |
plex: | |
host: 127.0.0.1 | |
port: 32400 | |
token: REDACTED | |
duplicates: | |
count: yes | |
convert: | |
auto: no | |
tmpdir: /datastore/tmp/ | |
formats: | |
mp3_320: | |
command: ffmpeg -i $source -y -vn -b:a 320k $dest | |
extension: mp3 | |
permissions: | |
file: 644 | |
dir: 755 | |
musicbrainz: | |
user: Kovrinic | |
pass: REDACTED | |
mbcollection: | |
auto: no | |
ignore: .AppleDouble ._* *~ .DS_Store | |
# Paths ---------------------------------------------------------------------- | |
# Paths and filenames for music files | |
# relative to music directory | |
paths: | |
default: $albumartist/$album%aunique{}/$disc-$track $title | |
singleton: Singletons/$artist - $title | |
comp: Various_Artist/$album%aunique{}/$disc-$track $title | |
albumtype:soundtrack: Soundtracks/$album/$disc-$track $title |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment