Hello,
I have recently bought SongKong and it looks like a very powerfull application to sort out my music collection. My compliments!
I have a question though.
I am trying to get my collection organized into the following format:
AlbumArtist =/AlbumArtist - [Year] Album (Audio Encoder)/Tracknumber - Title
with:
ifnotempty(albumartist,’ =/’)
- ifnotempty(albumartist,’ - [’)
- (year.length>4 ? year.substring(0,4):year) + '] ’
- ifnotempty(album,’ (’)
- ifnotempty(audioencoder,’)/’)
- ifnotempty(pad(trackno,2),’ - ')
- title
The example shows: “U2 =/U2 - [1980] Boy (mp3)/02 - Twilight”
There all seems to be okay, but sorting out my music in flac format the result shows: “U2 =/U2 - [1980] Boy (Flac) (FLAC 16 bits)/02 - Twilight”
Where I would have expected “U2 =/U2 - [1980] Boy (Flac)/02 - Twilight”!
Is this a flaw or a feature?
When it is a feature, how can I correct it into the expected (flac) format?
With regards. :thumbup: :thumbup: :thumbup: