script to rename mp3 files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting script to rename mp3 files
# 1  
Old 08-09-2012
script to rename mp3 files

hi there,

i'm using OS X.

i have a bunch of mp3 files strewn across a directory tree that i'd like to rename.

specifically i'd like to remove any track numbers and leading non-alphabetic characters from the filenames like this:

01 - song1.mp3
2 song2.mp3

become:

song1.mp3
song2.mp3

this accomplishes what i want within a given directory:

for i in [0-9]*;do mv "$i" "`echo $i|sed 's/^[0-9]*[^a-zA-Z]*//'`";done

any idea on how i can do this easily through an entire directory tree?

i tried to write a simple script using find to output each directory name, cd into it, and run the above command. the problem is that many directory and file names have special characters like spaces, parentheses, commas, ampersands, apostrophes, etc.

is there an easy way to deal with this?

thanks in advance
# 2  
Old 08-09-2012
Code:
find ./ -iname '[0-9]*.mp3' | while read FILE
do
        echo "Working on file $FILE"
done

# 3  
Old 08-09-2012
thanks for the quick reply.

that helps me in spitting out the path/file names, but then using sed to get rid of the leading characters is beyond my abilities.

the output looks like:

./path/to/file/01 - song.mp3
...

how can i then rename it to song.mp3 (leaving it in the original directory)? it's not as obvious to me anymore since "01 - " isn't at the start of the string.

thanks again

---------- Post updated at 04:49 PM ---------- Previous update was at 04:46 PM ----------

and also there could be numbers/non-alphabetic characters in the pathname that i'd like to leave intact
# 4  
Old 08-09-2012
Code:
IFS="/" # Split on /
find ./ -name '[0-9]*.mp3' | while read FILE
do
        set -- $FILE # Split ./path/whatever.mp3 into $1=., $2=path, $3=whatever.mp3

        P="$1"
        shift

        while [ "$#" -gt 1 ] # Build up the contents of P into ./path/
        do
                P="$P/$1"
                shift # Delete current $1, set $1=$2, $2=$3, ...
        done

        # Should be left with the path in P, and the file itself in $1
        echo "File is $1"
        echo "Path is $P"

        NEWNAME="whatever.mp3"
        echo mv "$P/$1" "$P/$NEWNAME"
done

# 5  
Old 08-10-2012
that's great. thanks so much.

here's the final version i'm using just for the record:

Code:
#!/bin/sh

IFS="/" # Split on /
find ./ -name '[0-9]*.mp3' | while read FILE
do
        P=""
        set -- $FILE
        while [ "$#" -gt 1 ]
        do
                [ -z "$P" ] || P="${P}/"
                P="$P$1"
                shift
        done

        echo "old name is $1"
        NEWNAME=$(echo $1 | sed 's/^[0-9]*[^a-zA-Z]*//')
        echo "new name is $NEWNAME"
        mv "$P/$1" "$P/$NEWNAME"
done

# 6  
Old 08-11-2012
Note that if you have two tracks on an album in iTunes that have the same song name (and something like "English version" and "Spanish version" in comments instead of as a parenthetical element in the song title), you could end up overwriting all but one of the tracks. To play it safe, I'd check to be sure that $P/$NEWNAME doesn't exist before doing the move.
This User Gave Thanks to Don Cragun For This Post:
# 7  
Old 08-13-2012
thanks much. makes sense. i changed it to mv -i to avoid that.

another small hiccup i came across: in my ~15k song library, i had one filename that was only numbers and got renamed to mp3
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script for rename many files

Hello friends! I have a problem with my script. I'm a italian boy. Sorry for my english ehehehehehhe. I've many files .jpg and I would like rename they in this mode: I have not files with progressive number e I would like rename with progressive number. Example: DSC_0012.JPG DSC_0582.JPG... (7 Replies)
Discussion started by: vegetablu
7 Replies

2. Shell Programming and Scripting

Script to unzip files and Rename the Output-files

Hi all, I have a many folders with zipped files in them. The zipped files are txt files from different folders. The txt files have the same names. If i try to find . -type f -name "*.zip" -exec cp -R {} /myhome/ZIP \; it fails since the ZIP files from different folders have the same names and... (2 Replies)
Discussion started by: pmkenya
2 Replies

3. Shell Programming and Scripting

Rename files in the script

Hi All, I want to write a script to rename the file in to the incremental order for example Original file filename=/nfs/n1/file1.img filename=/nfs/n1/file1.img filename=/nfs/n1/file1.img filename=/nfs/n1/file1.img filename=/nfs/n1/file1.img I want output shpuld be... (4 Replies)
Discussion started by: mangeshpardhi
4 Replies

4. Shell Programming and Scripting

Script to rename files

I have the following directories in my home directory, my scripts dbmig es ms_done my-home I want my output to look like the following MyScripts DbmigEs MsDone MyHome Basically, I want to get rid of spaces,special characters and convert the first letter of each word to uppercase and... (1 Reply)
Discussion started by: ramky79
1 Replies

5. Shell Programming and Scripting

Script Rename files

Hello, I have this problem. In a directory I have 4 csv files with this format: PHOENIX_KM_INTERAZIONI_YYYYMMDD.csv PHOENIX_KM_TRIPLETTE_YYYYMMDD.csv NEWCAB_KM_INTERAZIONI_YYYYMMDD.csv NEWCAB_KM_INTERAZIONI_YYYY_MM_DD.csv YYYYMMDD: format CURRENT date I wont rename all files in... (4 Replies)
Discussion started by: manichino74
4 Replies

6. UNIX for Dummies Questions & Answers

Script to Rename Files

I wrote a simple script that converts my windows text files to unix, so that I can compare them to different unix files purposes of my project. win2unix file1.txt file1Win.txt win2unix file2.txt file2Win.txt etc Is there a way to simplify this to: <while .txt in... (5 Replies)
Discussion started by: idano530
5 Replies

7. Shell Programming and Scripting

mp3 tag/rename based on creation (last modified date)

Arg, I'm trying to figure out how to create a album tag based on the last modified date stamp for files which don't have a corresponding .talk file. IE. 2009 12 10 - Talk Radio.mp3 is how I want them structured, they should all have a corresponding .talk file so my mp3 player can speak the name ie... (0 Replies)
Discussion started by: mrplow
0 Replies

8. Shell Programming and Scripting

Script to rename files

Let me preface this by stating I have absolutely no idea what I'm doing in this arena, but I'm in need of a little help here. I need to take filenames like this: amwed_0402c-slug~1-cp.jpg And reduce them to slug~1.jpg That is, I need to remove the first 12 and last 3 characters. The... (3 Replies)
Discussion started by: cpreovol
3 Replies

9. UNIX for Dummies Questions & Answers

Script to rename files

Have files of the sort 3p1522015.dgn and need to have them renamed to 152201.dgn. Essentially dropping the 1st 2 characters and the last. I'm relatively new to UNIX and uncertain of where to start. I hope this provides enough detail. Thanks (5 Replies)
Discussion started by: Dinkster
5 Replies

10. OS X (Apple)

Rename Files with a script ?

Hi All !!! Is there any solution to get rid of / " * in old files names WITH A SCRIPT (About 100 Gb of old files) I know it can be done i just dont know how ! Hope that some one can help Best R. Yovel (1 Reply)
Discussion started by: yoveln
1 Replies
Login or Register to Ask a Question