Replies: 5 comments 3 replies
-
There is several ways. Something automatic but depending on an external service is the If you don't want to rely on what last.fm gives you as genres or for now only fix "major problems" manually, This only works for "exact matches" of |
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply, @JOJ0 I dont use lastgenre, as i am relying on the genre in the files themselves. I trying to figure out how Beets can automatically delete certain files while importing. I dont want to modify, just delete them instead of importing. |
Beta Was this translation helpful? Give feedback.
-
Another approach would be to move paths:
default: /data/music/$folder/$initial_char/$album%aunique{album year,,[]} ($year)/$album ($year) - $title
singleton: /data/music/$folder/$initial_char/$album%aunique{album year,,[]} ($year)/$album ($year) - $title
comp: /data/music/$folder/$initial_char/$album%aunique{album year,,[]} ($year)/$album ($year) - $title
albumtype_soundtrack: /data/music/$folder/$initial_char/$album%aunique{album year,,[]} ($year)/$album ($year) - $title
item_fields:
initial_char: |
char = album[0].capitalize()
if album[0].isnumeric():
char = '#'
return char
folder: |
folder = 'XYZ'
if genre.lower()=='rnb':
folder = 'RNB'
elif genre.lower()=='classical':
folder = 'Classical Sorted'
return folder |
Beta Was this translation helpful? Give feedback.
-
Thank you. So, if i want to delete everything i import with House and Classical in the genre and want it to be put in /(Library)/INSPECT/House/ or /(Library)/INSPECT/Classical Sorted/
I tried it out, and it ignores it and sort like i have it in my path:
|
Beta Was this translation helpful? Give feedback.
-
Because you are not using |
Beta Was this translation helpful? Give feedback.
-
Hello,
Been setting up Beets and love it! One thing i have not figured out how to do.
Im importing alot of music, and some genres i just dont want in my collection. Are there any way to just auto delete anything that have “RNB” in the genre, while im automatic importing?
Beta Was this translation helpful? Give feedback.
All reactions