Hi Forum,
i'm currently in the process of reorganizing my music library.
I want to achieve the following file structure:
1. Multi-disc albums shall be placed in sub-folder Disc 1, Disc 2, ...
I'll achieve this by following expression:
if(IsEqual([Total Discs],1,2),
[Genre]\[Album Artist (auto)]\[Year - Album],
[Genre]\[Album Artist (auto)]\[Year - Album]\Disc [disc #])
2. The different Release-Types shall be placed in a dedicated sub-folder
For this i created a user-defined field named [Release Type] with the following values:
- Album
- Live Album
- Single
- EP
- Bootleg
Note: The value Album for Release Type is only needed in JRiver, but not in the file structure. If it would be more simple without the value Album i could get rid of it.
I'll achieve this by the following expression:
if(math(IsEqual([Release Type], Single)| IsEqual([Release Type], EP)| IsEqual([Release Type], Live Album)| IsEqual([Release Type], Bootleg)| IsEqual([Release Type], Compilation)),
[Genre]\[Album Artist (auto)]\[Release Type]\[Year - Album],
[Genre]\[Album Artist (auto)]\[Year - Album])
Questions:
1. How to bring this 2 expressions together, or is there an other simple way to do this?
2. I want to use this structure also for my handheld (sd-card) -- Will the processing take much longer because of all the math behind?
Thank you in advance