Created
May 20, 2014 16:45
-
-
Save andresilva/0ea5db06bb092c42f7e2 to your computer and use it in GitHub Desktop.
beets config
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
| directory: ~/music | |
| plugins: mpdupdate scrub info inline convert | |
| convert: | |
| format: aac | |
| opts: '-c:a libfdk_aac -vbr 4 -cutoff 18000' | |
| dest: ~/transcode | |
| paths: | |
| default: $albumartist - $album/$track $title | |
| replace: | |
| '[\\/]': _ | |
| '^\.': _ | |
| '[\x00-\x1f]': _ | |
| item_fields: | |
| metadata_string: | | |
| md = map(unicode, filter(None, [label, year if year != original_year else '', media])) | |
| if md: return u'[' + ', '.join(md) + '] ' | |
| else: return None | |
| paths: | |
| default: $albumartist/$album ($original_year) $metadata_string{$format$}/$track $title | |
| singleton: Singletons/$artist - $title | |
| comp: Various Artists/$album ($original_year) $metadata_string{$format$}/$track $title | |
| mpd: | |
| host: localhost | |
| port: 6600 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment