Advertisement
Guest User

Untitled

a guest
Nov 7th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.20 KB | None | 0 0
  1.  
  2. # Main directory
  3. directory: /mnt/rpi.music/Library/Music
  4. library: ./library.db
  5.  
  6. import:
  7.    write: yes
  8.    move: yes
  9.    copy: no
  10.    bell: yes
  11.    duplicate_action: ask
  12.    languages: en
  13.    timid: yes
  14.  
  15. # replace '\', '/', non printables and pre- and postfixed spaces
  16. replace:
  17.   '[\\/]': _
  18.   '^\.': _
  19.   '[\x00-\x1f]': _
  20.   '[<>:"\?\*\|]': _
  21.   '\.$': _
  22.   '\s+$': ''
  23.  
  24. # user the release-date of the original (first) release of an album?
  25. original_date: yes
  26.  
  27. # start counting track numbers back at one for each disc
  28. per_disc_numbering: yes
  29.  
  30. # files matching these patterns are deleted from source after import
  31. clutter: ["Thumbs.db", ".DS_Store", "*.m3u", "*.pls"]
  32.  
  33. # Paths -------------------------------------------------------
  34. paths:
  35.    default: %left{$albumartist_sort,1}/$albumartist/Albums/$original_year - $album%aunique{}/%if{$isMultidisc,$disc}-$track. $title
  36.    singleton: %left{$albumartist_sort,1}/$albumartist/Singles/$original_year - $album%aunique{}/%if{$isMultidisc,$disc}-$track. $titile
  37.    albumtype:soundtrack: %left{$albumartist_sort,1}/$albumartist/Soundtracks/$original_year - $album%aunique{}/%if{$isMultidisc,$disc }-$track. $title
  38.    albumtype:ep: %left{$albumartist_sort,1}/$albumartist/EP/$original_year - $album%aunique{}/%if{$isMultidisc,$disc}-$track. $title
  39.    albumtype:live: %left{$albumartist_sort,1}/$albumartist/Live/$original_year - $album%aunique{}/%if{$isMultidisc,$disc}-$track. $title
  40.    albumtype:mixtape/street: %left{$albumartist_sort,1}/$albumartist/Mixtapes/$original_year - $album%aunique{}/%if{$isMultidisc,$disc}-$track. $title
  41.    comp: /V/Various Artists/Compilations/$original_year - $album%aunique{}/%if{$isMultidisc,$disc}-$track. $title
  42.  
  43. aunique:
  44.    keys: albumartist album
  45.    disambiguators: albumtype year label catalognum albumdisambig releasegroupdisambig
  46.    bracket: '[]'
  47.  
  48. # filename for the album art
  49. art_filename: folder
  50. max_filename_lenght: 0
  51.  
  52. # Plugins ---------------------------------------
  53. plugins: [
  54.  discogs,
  55.  embedart,
  56.  edit,
  57.  permissions,
  58.  scrub,
  59.  edit,
  60.  inline,
  61.  fetchart
  62. ]
  63.  
  64. # User Interface ---------------------------------------------
  65. color: yes
  66. list_format_item: %upper{$artist} - $album - $track. $title
  67. list_format_album: %upper{$albumartist} - $album
  68. time_format: '%Y-%m-%d %H:%M:%S'
  69. terminal_encoding: utf8
  70.  
  71. # Auto Tagger ------------------------------------------------
  72. match:
  73.    strong_rec_thresh: 0.001
  74.    medium_rec_thresh: 0.25
  75.    rec_gap_thresh: 0.25
  76.    max_rec:
  77.       missing_tracks: low
  78.       unmatched_tracks: low
  79.    preferred:
  80.       media: ['CD', 'Digital Media|File']
  81.       original_year: no
  82.    ignored: missing_tracks unmatched_tracks
  83.    required: year
  84.  
  85. # activates the embed art plugin and adds the cover to the audio files metadata
  86. embedart:
  87.    auto: yes
  88.    
  89. fetchart:
  90.    minwidth: 600
  91.    maxwidth: 600
  92.    enforce_ratio: yes
  93.    auto: yes
  94.    sources: filesystem coverart itunes amazon albumart fanarttv
  95.  
  96. plex:
  97.  host: 192.168.1.15
  98.  port: 32400
  99.  library_name: "Music"
  100. # token: xxxxxxxxxxxxxxxx
  101.  
  102. embedart:
  103.    auto: yes
  104.  
  105. fetchart:
  106.    enforce_ratio: yes
  107.    auto: yes
  108.    sources: filesystem coverart itunes amazon albumart fanarttv
  109.  
  110. permissions:
  111.    file: 644
  112.    dir: 755
  113.  
  114. scrub:
  115.    auto: yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement