Advertisement
littlejeem

beet gmusic config

May 17th, 2019
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.51 KB | None | 0 0
  1. directory: /home/jlivin25/Music/Library/PlayUploads
  2. library: /home/jlivin25/.config/beets/uploads/musiclibrary.blb
  3.  
  4. import:
  5.     copy: no
  6.     move: yes
  7.     write: yes
  8.     resume: ask
  9.     quiet_fallback: skip
  10.     timid: no
  11.     log: beetslog.txt
  12. ignore: .AppleDouble ._* *~ .DS_Store
  13. art_filename: folder
  14.  
  15. plugins: embedart chroma fetchart convert permissions gmusic
  16.  
  17. pluginpath: /home/jlivin25/.config/beets/myplugins
  18.  
  19. threaded: yes
  20.  
  21. color: yes
  22.  
  23. match:
  24.     strong_rec_thresh: 0.55
  25.  
  26. paths:
  27.     default: $albumartist/$album/$track - $title - $artist
  28.     singleton: Singletons/$track - $title - $artist
  29.     comp: Various/$album/$track - $title - $artist
  30.     albumtype:soundtrack: Soundtracks/$album/$track - $title - $artist
  31.  
  32. permissions:
  33.     file: 777
  34.     dir: 777
  35.  
  36. convert:
  37.     never_convert_lossy_files: no
  38.     copy_album_art: yes
  39.     dest: ~/Music/Uploads
  40.     auto: yes
  41.     pretend: no
  42.     embed: yes
  43.     threads: 8
  44.     album_art_maxwidth: 0
  45.     quiet: no
  46.  
  47.     format: mp3
  48.     formats:
  49.         flac:
  50.             extension: flac
  51.             command: ffmpeg -i $source -y -vn -acodec flac $dest
  52.         alac:
  53.             extension: m4a
  54.             command: ffmpeg -i $source -y -vn -acodec alac $dest
  55.         mp3:
  56.             extension: mp3
  57.             command: ffmpeg -i $source -y -vn -aq 2 $dest
  58.     max_bitrate: 500
  59.     tmpdir:
  60.  
  61. gmusic:
  62.     email: myuser@gmail.com
  63.     password: mypassword
  64.     auto: yes
  65.     uploader_id:
  66.     device_id:
  67.     oauth_file: ~/.config/beets/oauth.cred
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement