Conditional editing of ID3 Tags???
airbornflght
Houston, TX Icrontian
Is there any program that would allow me to perform conditional editing of id3 tag information? I can't find one, and I could REALLY use one right about now.
such that I could say
[php]
for(int i=0; i<songs.size(); i++)
{
if(title.contains(" album version")
{
int temp = title.charStart(" album version");
string tempTitle = title.subString(0,temp-1);
title.setTitle(tempTitle);
}
}
[/php]
this is a fusion of java and some BS methods that could be used. if there is anything like this that can take parameters to delete certain parts, or truncate after a certain index is found.....or is this all wishful thinking. If I knew anything about reading from files in java then I would attempt to do this myself, but I don't know anything about that or editing ID3 information inside the wma/mp3 files. So it appears I'm up **** creek.
such that I could say
[php]
for(int i=0; i<songs.size(); i++)
{
if(title.contains(" album version")
{
int temp = title.charStart(" album version");
string tempTitle = title.subString(0,temp-1);
title.setTitle(tempTitle);
}
}
[/php]
this is a fusion of java and some BS methods that could be used. if there is anything like this that can take parameters to delete certain parts, or truncate after a certain index is found.....or is this all wishful thinking. If I knew anything about reading from files in java then I would attempt to do this myself, but I don't know anything about that or editing ID3 information inside the wma/mp3 files. So it appears I'm up **** creek.
0