Multi-Rename Tool: replace MP3 ID3 track with Artist
Moderators: Hacker, petermad, Stefan2, white
-
- Junior Member
- Posts: 29
- Joined: 2009-11-13, 18:31 UTC
- Location: East Hanover, NJ, USA
- Contact:
Multi-Rename Tool: replace MP3 ID3 track with Artist
I have a bunch of music files that import from iTunes with filenames like this:
01 Song Name.mp3.
02 Other Song Title.mp3
etc.
I would like to replace all of the 2-digit track numbers at the beginning of the filename with the artist name. (In a given folder the artist name wil all be the same.)
How do I set this up in the multi-rename tool?
01 Song Name.mp3.
02 Other Song Title.mp3
etc.
I would like to replace all of the 2-digit track numbers at the beginning of the filename with the artist name. (In a given folder the artist name wil all be the same.)
How do I set this up in the multi-rename tool?
Bill Treloar
Install AudioInfo content plugin then use the following mask in multi rename tool.
Code: Select all
[=audioinfo.Artist]_[N4-24]
-
- Junior Member
- Posts: 29
- Joined: 2009-11-13, 18:31 UTC
- Location: East Hanover, NJ, USA
- Contact:
Safe?
Thanks - I downloaded from your link.
Norton AntiVirus removed the audioconvertersetup.exe program before allowing it to run because it contains a threat: WS.Reputation.1
Can anyone here confirm whether this is safe to run?
Norton AntiVirus removed the audioconvertersetup.exe program before allowing it to run because it contains a threat: WS.Reputation.1
Can anyone here confirm whether this is safe to run?
Bill Treloar
- ghisler(Author)
- Site Admin
- Posts: 50930
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
This is a misfeature of Norton: It treats everything which isn't used by a lot of Norton users as a potential threat.WS.Reputation.1
I recommend that you send the file to www.virustotal.com for verification.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
btreloar,
Roman
That's why you should not use Norton Antivirus.Norton AntiVirus removed the audioconvertersetup.exe program before allowing it to run because it contains a threat: WS.Reputation.1
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
-
- Junior Member
- Posts: 29
- Joined: 2009-11-13, 18:31 UTC
- Location: East Hanover, NJ, USA
- Contact:
This seems to replace the two digit number plus trailing space from the beginning of the filename with an underscore character. What am I doing wrong?ts4242 wrote:Install AudioInfo content plugin then use the following mask in multi rename tool.Code: Select all
[=audioinfo.Artist]_[N4-24]
Also, I notice my custom columns isn't working. The Audioinfo plugin is installed, but all the custom columns (artist, genre, etc.) are blank. Is that a clue about what I've done wrong?
Bill Treloar
- sqa_wizard
- Power Member
- Posts: 3897
- Joined: 2003-02-06, 11:41 UTC
- Location: Germany
-
- Junior Member
- Posts: 29
- Joined: 2009-11-13, 18:31 UTC
- Location: East Hanover, NJ, USA
- Contact:
If I right-click my mp3 files and select Properties, I see the artist, album name, etc. so that information must be available to AudioInfo. Is it possible the plugin isn't fully installed or something?
The file structure is like this:
01 - songname.mp3
02 - next songname.mp3
03 - another songname.mp3
...
My goal is to change all of those leading 2-digit track numbers into the artist's name.
The file structure is like this:
01 - songname.mp3
02 - next songname.mp3
03 - another songname.mp3
...
My goal is to change all of those leading 2-digit track numbers into the artist's name.
Bill Treloar
- sqa_wizard
- Power Member
- Posts: 3897
- Joined: 2003-02-06, 11:41 UTC
- Location: Germany
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
Use a real tool for handling MP3 Tag -> FileName; vica versa or even MP3 Tag -> Folder / Folders / Filename
E.g. MP3Tag or TagScanner or something.
Once all yer tags are complete - for the files you want -
Use the renaming ability of the Tagging tool to structure your MP3s
into something like:
/MUSIC/Artist Name/Year_Album Name/01_Track Name.mp3
If you want them all in a single folder, then something like:
Artist Name_Year_Album Name_01_Track Name.mp3
Artist Name_Year_Album Name_10_Track Name.mp3
etc.
Only use underscores for separation of distinct fields, e.g. "Year_Album Name"
Do NOT use underscores elsewhere - use a space or a dash (-) or a unicode em en or something else.
Then you could use the TC MRT for moving files or sorting them as they all have a distinct pattern.
So you want to move your files from a Single (orderly) file name to a folder structure:
[N]
Search: ^([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)\.mp3
Replace: .\\$1\\$2_$3\\$4_$5.mp3
SubDir Branch View of a lot (or few) MP3 files contained within the structure above, can be extracted to the main MUSIC folder like:
[G]_[P]_[N]
Search: ^([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)\.mp3
Replace: ..\\..\\$1_$2_$3_$4_$5.mp3
Note, the Search is the same in both cases.
E.g. MP3Tag or TagScanner or something.
Once all yer tags are complete - for the files you want -
Use the renaming ability of the Tagging tool to structure your MP3s
into something like:
/MUSIC/Artist Name/Year_Album Name/01_Track Name.mp3
If you want them all in a single folder, then something like:
Artist Name_Year_Album Name_01_Track Name.mp3
Artist Name_Year_Album Name_10_Track Name.mp3
etc.
Only use underscores for separation of distinct fields, e.g. "Year_Album Name"
Do NOT use underscores elsewhere - use a space or a dash (-) or a unicode em en or something else.
Then you could use the TC MRT for moving files or sorting them as they all have a distinct pattern.
So you want to move your files from a Single (orderly) file name to a folder structure:
[N]
Search: ^([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)\.mp3
Replace: .\\$1\\$2_$3\\$4_$5.mp3
SubDir Branch View of a lot (or few) MP3 files contained within the structure above, can be extracted to the main MUSIC folder like:
[G]_[P]_[N]
Search: ^([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)_([^\_]+)\.mp3
Replace: ..\\..\\$1_$2_$3_$4_$5.mp3
Note, the Search is the same in both cases.