How to only write disc number to filename if the album contains multiple discs? #5670
-
I've been happily using Beets for a couple days to ingest and tag music. I'd like to tweak its configuration just a little. Currently, this is my
That results in an extraneous However, this config isn't working:
When I try to I'm sure I'm missing something very simple. How can I only write the disc number to the filename on multi-disc albums? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Use Also, as far as I know, the In the faq, there is an item about creating directories for multi-disc albums, you can apply the same logic to your path configuration. |
Beta Was this translation helpful? Give feedback.
Use
beet write
to reflect changes from database to files.update
is for the other way around.Also, as far as I know, the
%if
function is very simple, where you can't use any comparisons or whatsoever.CONDITION
in the docs may suggest otherwise, but you need to create a new template field with the inline plugin.In the faq, there is an item about creating directories for multi-disc albums, you can apply the same logic to your path configuration.