Karaoke Scene's Karaoke Forums https://mail.karaokescenemagazine.net/forums/ |
|
Alternative to KJ File Manager or another renaming tool? https://mail.karaokescenemagazine.net/forums/viewtopic.php?f=1&t=13993 |
Page 1 of 1 |
Author: | Wildewinds [ Fri Jun 27, 2008 10:33 pm ] |
Post subject: | Alternative to KJ File Manager or another renaming tool? |
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. |
Author: | mckyj57 [ Fri Jun 27, 2008 11:08 pm ] |
Post subject: | Re: Alternative to KJ File Manager or another renaming tool? |
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:
and turn that into:
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:
It's free! Except for the study and training that makes it readable... ![]() |
Author: | Lonman [ Sat Jun 28, 2008 1:39 am ] |
Post subject: | Re: Alternative to KJ File Manager or another renaming tool? |
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. |
Author: | stogie [ Sat Jun 28, 2008 7:32 am ] |
Post subject: | Re: Alternative to KJ File Manager or another renaming tool? |
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. |
Author: | Lone Wolf [ Sat Jun 28, 2008 8:23 am ] |
Post subject: | Re: Alternative to KJ File Manager or another renaming tool? |
I use a freeware program from joejoe sofware called rename master. you can download it from www.joejoesoft.com L.W. |
Author: | DJ Swirl [ Tue Jul 01, 2008 11:34 am ] |
Post subject: | Re: Alternative to KJ File Manager or another renaming tool? |
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 |
Author: | karyoker [ Tue Jul 01, 2008 11:44 am ] |
Post subject: | Re: Alternative to KJ File Manager or another renaming tool? |
renamer For karaoke renamer I havnt tried this one for a couple of years but it might be better for mp3's |
Page 1 of 1 | All times are UTC - 8 hours |
Powered by phpBB® Forum Software © phpBB Group https://www.phpbb.com/ |