Player and streaming servers

I am a project developer for:

Music tagging tools

name2id3
Create an ID3 tag by parsing the name of the file. Really usefull when your ripper forgets to tag the file properly. You specify the name layout using some extended tag:
%artist% %album% %year% %comment% %track% %genre% %skip%
For example to match a filename 'Jean Michel Jarre - Oxygene 1.mp3' you would say
name2id3 '%artist% - %album% %track%' *.mp3

id3rename
Rename a file based on the fields of the ID3 tag. Very flexible. You specify the new name using some extended tag:
%artist% %album% %year% %comment% %track% %genre% %skip%
For Example: Say your files are fully tagged and you want only name the files based on artist, album and track number. i.e.
jead_michele_jarre-oxygene-01.mp3
you specify a format-string of
'%artist%-%album%-%track%'
with the command (-l forces lower case, -u underscores spaces)
id3rename -l -u '%artist%-%album%-%track%' *.mp3

Kristian G. Kvilekval
,