If you use %_length% as is, then the definition from the documentation
applies: %_length% Length (formatted)
If you do not like that, you would have to create your own format string.
It is up to you to determine if loosing that leading zero is worth the effort.
The linked documentation referred to the definition of _LENGTH.
There is no readymade format string.
You would have to create your own formatting if you do not want to take the existing formatted time.
I would think it would require the length in seconds to be divided and separated into minutes and seconds and format each part indivdually
The mathematical formula for the field Value would be something like this for the HH (hours):MM (minutes):SS (seconds). $ifgreater($div(%_length_seconds%,3600),0,$div(%_length_seconds%,3600):,)$ifgreater($div($mod(%_length_seconds%,3600),60),0,$div($mod(%_length_seconds%,3600),60):,)$mod($mod(%_length_seconds%,3600),60)
The problem will be to find a solution for the wanted(?) zero for the minutes and/or seconds like in the above example for 3:07
You could further enhance this with some IF conditions to check the raw track length to decide when to trim or not. Lots of options to get the display as you prefer.
Hi again...many thanks to all for taking time to reply. Much appreciated.
For 'ryerman': your suggestion worked perfectly, though with a small, rather than capital 'L' on 'Left'
So: '$trimleft(%_length,0)
As for MP3 tracks of LESS than one minute...well, that would be extremely unlikely to happen for my music taste anyway.
Regarding absence of 'leading zero's looking 'odd':
I take the opposite view. Leading zeros for music tracks are just so unnecessary.
Far cleaner to show '4.06' than '04.06' which in my view just looks 'untidy', no matter how techhnically accurate on a 24hr clock.
That said, I've quite a few tracks that reach above '10'...as in 11.06, say.
Now that IS a necessary leading number to give clarity on!
For 'ohrenkino': despite above, having a string to show tracks LESS than one minute is at least useful to know, so thanks again for that. Same with MotleyG...on 'IF' conditions...
Whatever your view, the central point to agree on is: MP3 TAG is a great resource for us all, as is the chance to share help and views on its usage.