KARAOKE SCENE MAGAZINE ONLINE! - Alternative to KJ File Manager or another renaming tool? Public Forums Karaoke Discussions Karaoke Scene's Karaoke Forums Home | Contact Us | Site Map  

Karaoke Forums

Karaoke Scene Karaoke Forums

Karaoke Scene

   
  * Login
  * Register

  * FAQ
  * Search

Custom Search

Social Networks


premium-member

Offsite Links


It is currently Tue Feb 04, 2025 2:44 pm

All times are UTC - 8 hours





Post new topic Reply to topic  [ 7 posts ] 
Author Message
PostPosted: Fri Jun 27, 2008 10:33 pm 
Offline
newbie
newbie

Joined: Wed Feb 13, 2008 4:06 pm
Posts: 5
Been Liked: 0 time
I'm a home user and I'm trying to organize my mp3/cdg files. I need to do a few things like swapping the artist with the song title and getting rid of the disc ID (which I still don't understand why I would want that).

I found KJ File Manager and it works well enough, but the licensing fee of $79 seemed a bit steep.

Any other options? Anything better than manually renaming each file would work for me.

Oh yeah, free is good.


Top
 Profile Singer's Showcase Profile 
 
PostPosted: Fri Jun 27, 2008 11:08 pm 
Offline
Extreme Plus Poster
Extreme Plus Poster
User avatar

Joined: Tue Apr 04, 2006 9:24 pm
Posts: 5576
Location: Cocoa Beach
Been Liked: 122 times
Wildewinds @ Sat Jun 28, 2008 1:33 am wrote:
I'm a home user and I'm trying to organize my mp3/cdg files. I need to do a few things like swapping the artist with the song title and getting rid of the disc ID (which I still don't understand why I would want that).

Because you can have more than one copy of a song? And there can be more than one version by a manufacturer? (I have two CB "One Night At A Time", both different. There are multiple versions of quite a few songs floating around.)

Quote:

I found KJ File Manager and it works well enough, but the licensing fee of $79 seemed a bit steep.

Any other options? Anything better than manually renaming each file would work for me.

Oh yeah, free is good.

I wrote my own Perl script that does it. I would post it here, but it really isn't designed for anyone not heavily into Perl to use. It does some cool things, though -- regularizes artist and song names, puts songs in a database table, etc.

Here is a short Perl script, though, which is probably more usable and which will do it. It calls the well-known Perl rename script:

Code:
#!/usr/bin/perl

use Getopt::Std;
my %opt;
getopts('v', \%opt);
# Usage: rename perlexpr [files]

($op = shift) || die "Usage: rename perlexpr [filenames]\n";
if (!@ARGV) {
    @ARGV = <STDIN>;
    chop(@ARGV);
}
for (@ARGV) {
    $was = $_;
    eval $op;
    die $@ if $@;
warn "rename '$was' -> '$_'\n" if $opt{v};
    rename($was,$_) unless $was eq $_;
}


Save that to a file called rename.pl. Then from the DOS (or UNIX) command line:

perl rename.pl 's/^\w+-\d+\s+-\s+(.*?)\s+-\s+(.*)\.(\w+)$/$2 - $1.$3/' *.mp3

That will swap the artist and title and strip the disk ID from a classic file naming style:

    SC8493-05 - Strait, George - Amarillo By Morning.zip

and turn that into:

    Amarillo By Morning - Strait, George.zip

Perhaps better yet, this one retains the disk type:

perl rename.pl 's/^([A-Z]+)\d+-\d+\s+-\s+(.*?)\s+-\s+(.*)\.(\w+)$/$3 - $2 ($1).$4/' *.mp3

And makes it:

    Amarillo By Morning - Strait, George (SC).zip


It's free! Except for the study and training that makes it readable... 8-)


Top
 Profile Singer's Showcase Profile 
 
PostPosted: Sat Jun 28, 2008 1:39 am 
Offline
Super Extreme Poster
Super Extreme Poster
User avatar

Joined: Mon Dec 10, 2001 3:57 pm
Posts: 22978
Songs: 35
Images: 3
Location: Tacoma, WA
Been Liked: 2126 times
Wildewinds @ Fri Jun 27, 2008 11:33 pm wrote:
I'm a home user and I'm trying to organize my mp3/cdg files. I need to do a few things like swapping the artist with the song title and getting rid of the disc ID (which I still don't understand why I would want that).

I found KJ File Manager and it works well enough, but the licensing fee of $79 seemed a bit steep.

Any other options? Anything better than manually renaming each file would work for me.

Oh yeah, free is good.


Like said disc ID is good if you have multiple versions from different manufacturers - which will eventually happen as you get more discs.

_________________
LIKE Lonman on Facebook - Lonman Productions Karaoke & my main site via my profile!
Image


Top
 Profile Personal album Singer's Showcase Profile 
 
PostPosted: Sat Jun 28, 2008 7:32 am 
Offline
Super Poster
Super Poster

Joined: Thu Nov 29, 2007 9:39 am
Posts: 1238
Location: Tampa Bay Area
Been Liked: 15 times
There is a program called Tagscanner or Tag Scanner. It's fabulous and simple to use. It will let you scan a folder and generate a list that can be exported to excel. In Excel you can do anything. If you want to change the order of artist and title just move column A to column B and column B to column A. Tag Scanner does a lot more than that and can even export to an HTML file. Give it a try.


Top
 Profile Singer's Showcase Profile 
 
PostPosted: Sat Jun 28, 2008 8:23 am 
Offline
Super Plus Poster
Super Plus Poster
User avatar

Joined: Mon May 28, 2007 10:11 am
Posts: 1832
Location: TX
Been Liked: 59 times
I use a freeware program from joejoe sofware called rename master.
you can download it from www.joejoesoft.com

L.W.


Top
 Profile Singer's Showcase Profile 
 
PostPosted: Tue Jul 01, 2008 11:34 am 
Offline
Senior Poster
Senior Poster

Joined: Mon Jun 02, 2008 7:53 am
Posts: 224
Location: Cincinnati/NKY
Been Liked: 0 time
I use a freeware app called Bulk Rename Utility. a bit of a learning curve, but it has save me IMMEASURABLE time.

http://www.bulkrenameutility.co.uk/Main_Intro.php

_________________
hi-voxentertainment


Top
 Profile Singer's Showcase Profile 
 
PostPosted: Tue Jul 01, 2008 11:44 am 
Offline
Extreme Plus Poster
Extreme Plus Poster
User avatar

Joined: Wed Jun 30, 2004 3:43 pm
Posts: 6784
Location: Fort Collins Colorado USA
Been Liked: 5 times
renamer For karaoke

renamer I havnt tried this one for a couple of years but it might be better for mp3's

_________________
Join The Karaokle Singers Social Network. Upload Your Music!!


Top
 Profile Singer's Showcase Profile 
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 7 posts ] 

All times are UTC - 8 hours


Who is online

Users browsing this forum: No registered users and 588 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Powered by phpBB® Forum Software © phpBB Group

Privacy Policy | Anti-Spam Policy | Acceptable Use Policy Copyright © Karaoke Scene Magazine
design & hosting by Cross Web Tech