Features include:
- an all-in-one view & edit of tag properties
- read & write support for ID3v1.0, 1.1, 2.3 and 2.4
- read-only support for VorbisComments in ogg and flac
- cover art lookup
- automated tag corrections on opening folders
- scripting to do (nearly) everything to your tags that you can imagine - not just a few actions, but a standard Pascal syntax.
A very simple sample script to show what scripting can do (yes, TagsRevisited supports Syntax highlighting of course):
// This is an example of how TagsRevisited can be scripted.
program SampleScript;
var sText: string;
iSong: integer;
begin
sText := 'Number of songs: '+IntToStr(SongCount) + ' (' + IntToStr(Files.Count) + ')' + #13#10;
for iSong := 0 to Pred(SongCount)
do sText := sText + Files.Items[iSong].TagID3v2.Title + #13#10;
ShowMessage(sText);
end.
|