Is there a way to use the Mp3tag Export feature and write a script that will covert all exported text into lowercase letters?
Thanks
Is there a way to use the Mp3tag Export feature and write a script that will covert all exported text into lowercase letters?
Thanks
You can put the placeholders in the $lower() function:
i.e.
$lower(%artist% - %title%)
Thanks for the reply but I don't know how to implement your suggestion. Here is my MTE export file. I would like the song title, artist name and album name exported in lowercase. I would also like them to be in the order they are in, say as an M3U file exported from Winamp. Thanks.
$filename(html)
<?xml version="1.0" encoding="utf-8"?> http://www.mp3tag.de" /> KRCL beat philosophy mix <!-- h1 { font-family: Verdana, Tahoma, Arial, sans-serif; font-size: 14pt; color:#000 }
body { font-family: Verdana, Tahoma, Arial, sans-serif; font-size: 8pt;
background: #fff }
table, tr, td { font-family: Verdana, Tahoma, Arial, sans-serif; font-size:
9pt; color: #000; }
a:link, a:visited, a:active { text-decoration: none; color: #03f; }
a:hover { text-decoration: none; color: #f03; }
.title { font-weight: bold; padding: 7px; margin: 0px; color: #000; }
.odd { background-color: #ccc; }
-->
| # | Title | Artist | Album |
|---|---|---|---|
Uh, how about
<td$if($odd(%_counter%), class="odd",)>$lower(%title%)</td>
Please put such code lines in [ code] tags or [ codebox] if it's a lot of text.
I don't know if that is possible.