Advertisement
ovizii

config.yaml

Oct 7th, 2022 (edited)
1,028
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.62 KB | None | 0 0
  1. # https://beets.readthedocs.io/en/stable/reference/config.html#
  2. plugins: acousticbrainz albumtypes beatport chroma convert discogs duplicates embedart fetchart fromfilename fuzzy info lastgenre mbsync missing permissions play random replaygain rewrite scrub web
  3. directory: /music
  4. library: /config/musiclibrary.blb
  5. art_filename: albumart
  6. threaded: yes
  7. original_date: no
  8. per_disc_numbering: no
  9.  
  10. acousticbrainz:
  11.     auto: yes
  12.  
  13. acoustid:
  14.     apikey: mysecretapikey
  15.  
  16. albumtypes:
  17.     types:
  18.         - ep: 'EP'
  19.         - single: 'Single'
  20.         - soundtrack: 'OST'
  21.         - live: 'Live'
  22.         - compilation: 'Anthology'
  23.         - remix: 'Remix'
  24.     ignore_va: compilation
  25.     bracket: '[]'
  26.  
  27. chroma:
  28.     auto: yes
  29.  
  30. convert:
  31.     auto: yes
  32.     ffmpeg: /usr/bin/ffmpeg
  33. # originally working with:
  34. #    opts: -ab 256k -ac 2 -ar 48000
  35. # see https://trac.ffmpeg.org/wiki/Encode/MP3
  36. # possibly use -q:a 3 instead of -aq 3 ???
  37.     opts: -ac 2 -ar 48000 -acodec libmp3lame -aq 3
  38.     max_bitrate: 256
  39.     threads: 1
  40.     never_convert_lossy_files: yes
  41.     delete_originals: true
  42.  
  43. embedart:
  44.     auto: yes
  45.  
  46. fetchart:
  47.     auto: yes
  48.  
  49. import:
  50.     write: yes
  51.     copy: no
  52.     move: yes
  53.     resume: ask
  54.     incremental: yes
  55.     incremental_skip_later: yes
  56.     quiet_fallback: skip
  57.     timid: no
  58.     log: /config/beet.log
  59.  
  60. lastgenre:
  61.     auto: yes
  62.  
  63. paths:
  64.     default: $albumartist/$album%aunique{}/$track - $title
  65.     singleton: Non-Album/$artist - $title
  66.     comp: Various Artists/$album%aunique{}/$track - $title
  67.     albumtype:soundtrack: Soundtracks/$album/$track - $title
  68.  
  69. permissions:
  70.     file: 660
  71.     dir: 770
Tags: beets
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement