Issue when importing files with non-number year tags #3971
Unanswered
Auranium64
asked this question in
Q&A
Replies: 1 comment 5 replies
-
beets stores year as a numeric value - you could maybe look at using a custom field like so:
And then using that in your path instead: paths:
default: $albumartist/($custom_year) - $album/$disc_and_track. $title You could even have it fall back to the normal year field if a custom year hasn't been specified: paths:
default: $albumartist/(%ifdef{custom_year,$custom_year,$year}) - $album/$disc_and_track. $title |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello. I'm having issues regarding my music library which I have recently brought over from MusicBee. With my personal tagging system, albums by the same album artist that were released in the same year have a letter added to them. For instance, The Beatles' Sgt. Pepper's Lonely Heart Club Band is tagged with the year "1967a" while Magical Mystery Tour is tagged with "1967b", this is to guarantee chronological organization without having to input exact release dates for every album in my collection.
MusicBee, while showing my a tiny warning about how the year tag was "invalid", accepted it anyways, organizing the folders in the following way for the above example:
However, with beets, the "unorthodox" year tags are being seemingly ignored, and being organized as follows:
What could I do about this? Here's my current configuration:
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions