I want to convert values to descriptions.
Example of values:
Example of descriptions:
The value range is always 0-100
.
Right now, the descriptions are based on 1/3's (33%).
So for example, 0-33
for 1T_DANCEABILITY = #dance-low
and 34-66
for for 1T_ENERGY = #energy-med
What I want to achieve is dividing them into 1/5's (20%) instead.
So for example, 0-20
for 1T_DANCEABILITY = #dance-lowest
and 21-40
for 1T_DANCEABILITY = #dance-lower
Something like if 1T_DANCEABILITY is between 0-20
, then write/add #dance-lowest to {user-defined tag}
.
If 1T_VALENCE is between 80-100
, then write/add #happiest to {user-defined tag}
.
This way you end up with the example of the Album
tag in example screenshot, but instead of thirds, it's more detailed, based on fifths.
How would I do this in Mp3tag, based on the existing values?