-
I messed something up somewhere, and now my library is all messed up, could really use some help. Normally I organize my music like such: Luckily the tags should all be correct, so I'm wondering if there's any way to sort the files in the Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That's precisely beets usual mode of operation: When you I'm not quite following what lead to your issue, though. But as long as beets still "knows" where your files are (i.e. they are in the places where beets put them, and you didn't manually move things around), just using |
Beta Was this translation helpful? Give feedback.
Thank you, but I don't think I fully understood the problem before asking for help. An out-of-band application was adding files to my directory structure that we're being processed by beets, so it was unaware of the presence of the files, and they didn't follow the standard that I have specified in my config.
I managed to hack together a solution, it's not elegant but it seems to be working. I figured out that I could run a
beet import -A --group-albums
and it would skip the auto-tagger (reading the tags of the files only), and group albums together based on tag alone- but needed to be pointed at a directory full of individual files. For that I just did a quick bash for loop to iterate th…