views:

133

answers:

3

I have quite a lot of music files but their title attributes have the track numbers infront of them, like 01.TrackName, 02.TrackName. What is the best way to strip off integers from the file attributes?

Edit: I am using windows and all music files are MP3. Any solution as batch files, c++ or .net etc will be appreciated.

A: 

I'd use Flexible File Renamer to rename the files per your needs. It does require some familiarity with patterns and, in some advanced scenarios, regular expressions.

There are several other similar tools on the market, each with their own scope as to what they can do and how easily it can be done.

See http://hp.vector.co.jp/authors/VA014830/english/FlexRena/. The website shows a screenshot of a user batch-renaming a set of MP3 files using not only elements within the filename but also ID3 tag-related information such as track title and artist.

David Andres
A: 

I use Flash Renamer Great util, and it has support for renameing MP3's

Muad'Dib
A: 

You can use an ID3 tag editor. Some have support for batch tagging using regexes. Another option would be to use python with the id3 tag library (I don't remember its name...)

Edit: For example http://www.mp3tag.de/en/

Mutagen: Id3 tag library for python.

Carles