-
How can I add the artist's nickname from the tags to the directory name? |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Dec 19, 2021
Replies: 1 comment
-
Not possible with a regular format string, but you can spin your own Python expression: "directory": ["\fE ', '.join([t[7:] for t in tags if t.startswith('artist:')])"] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
selpats
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not possible with a regular format string, but you can spin your own Python expression: