Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Rename your ripped mp3 in a hurry

by Sigmund (Pilgrim)
on Sep 20, 2001 at 17:15 UTC ( [id://113580]=CUFP: print w/replies, xml ) Need Help??

this simple script renames your ripped mp3 (usually named 01.mp3, 02.m3...by the ripper taking the titles from a file named "titles" which contains titles in order; this is because it's easier to write a single list of titles than renaming files one by one. And after all you could even find the titles' list on the net in a hurry!
as the ugly code itself explains, the titles' list resides in a file named (i'm original) "titles"!
I know, it's not beautiful code, neither good programming exercise, but my small brother who spends his time ripping every CD he's got, found it REALLY useful!!!
Enjoy

SiG

perl -le 's ssSss.s sSsSiss.s s$sSss.s s.$s\107ss.print'
#!/usr/bin/perl -w open (TITLES, "< titles" ); $counter = 0; while ($title=<TITLES>) { $counter ++; $number = $counter; if ($counter < 10) { $number = "0$counter"; } chomp $title; $title = "$number - $title.mp3"; print $title; print "\n"; $number = "$number.mp3"; rename $number, $title; } close (TITLES);

Replies are listed 'Best First'.
Re: Rename your ripped mp3 in a hurry
by AltBlue (Chaplain) on Sep 26, 2001 at 00:11 UTC
    heh, if you like this 'careless' way of doing things then you may use this oneliner to obtain the same result:
    perl -ne 'BEGIN{@f=<*.mp3>}; chop; rename shift @f, sprintf("%02d +- %s.mp3", $., $_)' < titles

    --
    AltBlue.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://113580]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-09-14 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    The PerlMonks site front end has:





    Results (21 votes). Check out past polls.

    Notices?
    erzuuli‥ 🛈The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.