-
I have a flexible tag called In my path format I want to use this flexible attribute. But there is no explanation on what does the path format read the fields from. For example, both albums and items have the My goal is to put things with the
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Interesting question. I'd like to understand that difference as well! I recently had a similar idea: I'd like to move items according to the state of an inline attribute to a separate folder. |
Beta Was this translation helpful? Give feedback.
-
The short answer is that both are used, but album-level data takes priority. The long answer is in the code: Line 371 in d7273bd Namely, when formatting paths, we try the associated album with every item first. If we find no data there, then we look things up in the item itself. |
Beta Was this translation helpful? Give feedback.
-
For bespoke path formats, keep the inline plugin in mind, too. |
Beta Was this translation helpful? Give feedback.
The short answer is that both are used, but album-level data takes priority. The long answer is in the code:
beets/beets/library.py
Line 371 in d7273bd
Namely, when formatting paths, we try the associated album with every item first. If we find no data there, then we look things up in the item itself.