Title Case %_releasecomment%

Hi
I have a question, I’m using this tagger script:

$set(album,$if(%_releasecomment%,%album% \(%_releasecomment%\),%album%))

Which adds the disambiguation in the album names.
Yeah Yeah Yeahs - Mosquito (deluxe edition) [3729310] [2013] [Album]

Is it possible with him or some other one to make comment start with TitleCase letters? E.g.
Yeah Yeah Yeahs - Mosquito (Deluxe Edition) [3729310] [2013] [Album]

I know that the comment is downloaded from the MB database. But maybe there is a script that changes the letter size only in %_releasecomment%. Do I require too much? :wink:

See the $title function, as on this page: https://picard.musicbrainz.org/docs/scripting/

1 Like

Thank you, adding below command into tagger script and filenaming solved problem:

$set(album,$if(%_releasecomment%,%album% \($title(%_releasecomment%)\),%album%))

Thanks! again.

ok, @hbrtkp , I’m using your file naming script from here: Repository for neat file name string patterns and tagger script snippets

and I’m having an issue with the _releasecomment tagger script:

$set(album,$if(%_releasecomment%,%album% \($title(%_releasecomment%)\),%album%))

When I check the tags on certain files, I get THIS:

Any ideas how to keep it from repeating? (Happens on file rename also)

Are you viewing the files in the naming script editor? If so, that is a known bug that will be fixed in the next release. See the following for more details:

Until it has been released, try changing the line in your script to:

$if($and(%_releasecomment%,$not($in(%album%,%_releasecomment%))),$set(album,%album% \($title(%_releasecomment%)\)))
1 Like