Hi everyone, had another question I was hoping someone out there could give me a hand with.
I want to capitalize artists initials, for example:
E.l.o. - One More Time.mp3
to
E.L.O. - One More Time.mp3
So what I did was to make a rule that stated this:
Field: _Filename
Case Conversion: Mixed Case
Words begin from/after any of: .
but this is what I ended up getting:
E.L.O. - One More Time.Mp3
Is there another formula so that "Mp3" isn't capitalized?
dano
June 15, 2006, 2:17pm
2
I thought the extension would not be affected by this action type, maybe a small bug.
But you can try this action:
Action type: Format value
Field: _FILENAME
Formatstring: $caps2(%_filename%,.)
Dano You rock thanks it worked perfectly. In the last version of mp3 I could have sworn that was the case it would never cap .mp3 not sure what the scoop is...
thanks again I could have never figured that one out
Just wanted to see if anyone knew how to get this to work for other fields.
I tried this for the artists field but its not working.
Field:Artist
Format String:$caps(%_artist%,.)
Is there some global one I could do that would capitalize all initials?
dano
January 31, 2007, 6:07pm
5
Tag fields have no underscores, it's %artist%
Hey Dano, hmm well tried this it didn't work either.
Action type: Format value
Field: _FILENAME
Formatstring: $caps2(%artist%,.)
Did I miss something?
dano
February 1, 2007, 1:19pm
7
The proper combinatin would be
Action type: Format value
Field: ARTIST
Formatstring: $caps2(%artist%,.)
For all tag fiels at once:
Action type: Replace with regular expressions
Field: _TAG
Regular expression: (\l).
Replace matches with: $upper($1).