image
image

Go Back   macosx.com > Mac Help Forums > Mac OS X System & Mac Software

Reply
 
Thread Tools
  #1  
Old July 1st, 2005, 11:47 AM
Registered User
 
Join Date: Jul 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
deltadivajp is on a distinguished road
How do I edit a bunch of MP3 files (not in iTunes)

Okay so here's my situation. I got an album that was just one mp3 file...i used mp3trimmer and split the files into the correct amt of tracks...but now all the files say "repaireddatetimetrack1.mp" or to that effect to every track. I want to edit the file name in the finder folder so that when I go to burn it, the file names will be there. I know in iTunes you can select a group of tracks and do apple-i and edit like that. Is there a way to do that out in the finder folder? Also, I tried using TriTag to import the track names and I can't quite get that to work. I just need an EASY way to edit 5 albums. I hope someone can help!
Reply With Quote
  #2  
Old July 1st, 2005, 12:48 PM
Damrod's Avatar
Registered User
 
Join Date: Aug 2002
Location: Aachen, Germany
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
Damrod is on a distinguished road
Try MP3 Rage. It's a quite good MP3-Tool collection

http://www.versiontracker.com/dyn/moreinfo/macosx/3019

Could solve your tasks and problems quite well I guess
__________________
PowerMac G4 MDD '03 1.25GHz, 1 GB RAM, 2x80 GB HDD, on OS X 10.4.x/10.5.x
iPod nano 2nd Gen 2GB
Part of the party since MacOS 7

My Last.fm Profile
Reply With Quote
  #3  
Old July 1st, 2005, 01:11 PM
Mikuro's Avatar
Crotchety UI Nitpicker
 
Join Date: Mar 2005
Posts: 2,497
Thanks: 4
Thanked 15 Times in 14 Posts
Mikuro is on a distinguished road
I use iTunes along with some AppleScripts to do this kind of thing. The particular script I usually use is this:
Code:
tell application "iTunes"
	repeat with track_num from 1 to the number of file track of the selection
		set the_file to the location of file track track_num of the selection
		set t to file track track_num of the selection
		set the_track to ""

		if (the artist of t) is not "" then set the_track to the_track & the artist of t & " - "
		set the_track to the_track & the name of t

		set AppleScript's text item delimiters to ":"
		set temp_list to every text item of the_track
		set AppleScript's text item delimiters to ";"
		set the_track to temp_list as string
		
		tell application "Finder"
			set AppleScript's text item delimiters to "."
			set the_ext to "." & text item (the number of text items of (the name of the_file as string)) of (the name of the_file as string)
			set the name of the_file to the_track & the_ext
		end tell
	end repeat
end tell
It will set the file names of every selected track to "artist - title.mp3" (where "artist" and "title", are, of course, the relevant data from the particular track). If you wanted to include the album name or track number, too, it just takes a little tweaking. For example, insert this line before or after the IF line to add the album name before or after the artist:
Code:
if (the album of t) is not "" then set the_track to the_track & the album of t & " - "
There are also general file renamers out there that would probably get the job done. I haven't used any myself, but you can take a look at a few at http://www.macupdate.com/search.php?...eywords=rename
__________________
Mac mini — 1.25GHz G4, 1GB RAM — OS 10.5.5

Useful programs: Privoxy, Butler, ffmpegX, VLC, Perian, Tofu, Wcalc
Reply With Quote
  #4  
Old July 1st, 2005, 11:20 PM
Registered User
 
Join Date: Jul 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
deltadivajp is on a distinguished road
thank you both for your replies! I'm not sure if the apple script would work as the files don't have the track names in them. I'm trying to find an easier way to enter a whole album's track names into the files.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
Forum Jump


All times are GMT -5. The time now is 06:15 PM.


Mac Support® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Copyright 2000-2008 DigitalCrowd, Inc.