Initial commit for beets

This commit is contained in:
IamTheFij 2018-04-24 09:46:45 -07:00
commit ed91981a7c
5 changed files with 41 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
beets_env/

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
BEET_CMD := ./beets_env/bin/beet -c ./config.yaml
default: beets_env
beets_env:
python3 -m venv beets_env
./beets_env/bin/pip install -U pip
./beets_env/bin/pip install -r ./requirements.txt
reimport: beets_env
$(BEET_CMD) import ~/Music/Music
web: beets_env
$(BEET_CMD) web

8
Readme.md Normal file
View File

@ -0,0 +1,8 @@
# My Beets Library
Basic config and env management for Beets
To Do:
- [ ] Validate that it works and then set up a smart playlist for all Ska
- [ ] Plex update
- [ ] Add search that requires keys

17
config.yaml Normal file
View File

@ -0,0 +1,17 @@
directory: ~/Music/Music
import:
move: yes
write: yes
log: import.log
plugins:
- fetchart
- lastgenre
- ftintitle
- web
fetchart:
cautious: yes
lastgenre:
prefer_specific: yes

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
beets[fetchart,lastgenre,web]