You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.9 KiB

  1. # global options
  2. directory: /mnt/network/Audio
  3. library: /mnt/network/Audio/beetslibrary.db
  4. threaded: yes
  5. per_disc_numbering: yes
  6. # plugins
  7. #requirements installed by pip3 install --user [something]
  8. pluginpath: ~/.config/beets/plugins
  9. plugins: [
  10. fetchart,
  11. embedart,
  12. convert,
  13. scrub,
  14. # replaygain, # normalizes volume levels
  15. # requires pylast
  16. lastgenre,
  17. # requres discogs-client
  18. discogs,
  19. # chroma, # identifies song by acoustic fingerprint
  20. # requires flask
  21. web,
  22. duplicates,
  23. inline
  24. ]
  25. # item fields
  26. # using plugin 'inline'
  27. item_fields:
  28. multidisc: 1 if disctotal > 1 else 0
  29. # path options
  30. paths:
  31. genre:Hörspiel: Hörspiel/$album/$track $title
  32. singleton: Musik/Singles/$genre/$artist - $title
  33. albumtype:soundtrack: Musik/Soundtracks/$album/$track $artist - $title
  34. comp: Musik/$genre/Compilations/$album%aunique{}/%if{$multidisc,$disc}$track $artist - $title
  35. albumtype:audiobook: Audiobook/$albumartist - $album%aunique{}/$album%aunique{} - $title
  36. albumtype:other: Audiobook/$albumartist - $album%aunique{}/$album%aunique{} - $title
  37. default: Musik/$genre/$albumartist/$album%aunique{}/%if{$multidisc,$disc}$track $title
  38. # import options
  39. import:
  40. move: yes # override move with 'import -c'
  41. # copy: yes
  42. write: yes
  43. # plugin configurations
  44. fetchart:
  45. auto: yes
  46. minwidth: 500
  47. embedart:
  48. auto: yes
  49. ifempty: yes # don't replace existing embedded art files
  50. remove_art_file: yes # remove art file from folder when embedded
  51. #convert:
  52. scrub:
  53. auto: no
  54. lastgenre:
  55. auto: yes
  56. canonical: yes
  57. count: 1 # only fetch 1 genre
  58. prefer_specifig: yes # prefer genre down the tree rather than the popular (often more generic)
  59. source: track # artist/album/track for genre fetching
  60. whitelist: ~/.config/beets/whitelist.yaml
  61. # canonical: /path/to/genres-tree.yaml
  62. # run 'beet web', then access it on localhost:8337
  63. web:
  64. host: 127.0.0.1
  65. port: 8337