|
View unanswered posts | View active topics
|
Page 1 of 1
|
[ 11 posts ] |
|
Author |
Message |
earlchagnon
|
Posted: Tue Oct 21, 2008 7:16 am |
|
|
newbie |
|
Joined: Fri Jul 13, 2007 10:12 am Posts: 3 Been Liked: 0 time
|
Hey everyone,
I'm running into a little dilema I hope can be resolved here. Here goes:
I have a group of folders with mp3's and their associated cdg files. How can I zip these files down in a way that will give me the song title AND the artist info. It seems I can only get the song title, and when I try renaming mp3 tags and/or files the programs i use won't do anything. Very fustrating, as I don't want to manually rename 700 files!
Does anybody have a solution?
-e
|
|
Top |
|
|
mckyj57
|
Posted: Tue Oct 21, 2008 7:24 am |
|
Joined: Tue Apr 04, 2006 9:24 pm Posts: 5576 Location: Cocoa Beach Been Liked: 122 times
|
earlchagnon @ Tue Oct 21, 2008 10:16 am wrote: Hey everyone, I'm running into a little dilema I hope can be resolved here. Here goes: I have a group of folders with mp3's and their associated cdg files. How can I zip these files down in a way that will give me the song title AND the artist info. It seems I can only get the song title, and when I try renaming mp3 tags and/or files the programs i use won't do anything. Very fustrating, as I don't want to manually rename 700 files!
Does anybody have a solution?
I have a solution, provided you have a question. I don't think anyone can figure out what you are talking about. If you can give an example of what the current file names and MP3 tags are, and what you want them to be, then someone might be able to help.
I do that type of thing with a bunch of custom Perl scripts, but most people use MP3-rename or some other similar file renaming program with mp3 IDVx tag support.
_________________ [color=#ffff55]Mickey J.[/color] Alas for those who never sing, but die with all their music in them. -- Oliver Wendell Holmes, Sr.
|
|
Top |
|
|
earlchagnon
|
Posted: Tue Oct 21, 2008 8:11 am |
|
|
newbie |
|
Joined: Fri Jul 13, 2007 10:12 am Posts: 3 Been Liked: 0 time
|
mckyj57 @ Tue Oct 21, 2008 10:24 am wrote: earlchagnon @ Tue Oct 21, 2008 10:16 am wrote:
Does anybody have a solution?
I have a solution, provided you have a question. I don't think anyone can figure out what you are talking about. If you can give an example of what the current file names and MP3 tags are, and what you want them to be, then someone might be able to help. I do that type of thing with a bunch of custom Perl scripts, but most people use MP3-rename or some other similar file renaming program with mp3 IDVx tag support.
Thanks mckyj57, I'll elaborate
two files I want to zip together;
Addicted to Love.cdg
Addicted to Love.mp3
now, the mp3 file has the ID tag info for album, artist, etc. while the cgd does not. However, when I zip the file down the program names the .zip with title only, and I lose the tag info for the mp3. So it's my conclusion that the zipping software is only reading the info from the cdg when it names the zip file. Is there a way to rename the cdg with the associated mp3's info?
I'd like either both files to be renamed:
Addicted to Love - Robert Palmer.cdg
Addicted to Love - Robert Palmer.mp3
OR
both files still say
Addicted to Love.cdg
Addicted to Love.mp3
but the zip file created with these two to be renamed with the tag info from the mp3
hope this helps
-e
|
|
Top |
|
|
knightshow
|
Posted: Tue Oct 21, 2008 10:18 am |
|
Joined: Thu Nov 07, 2002 2:40 am Posts: 7468 Location: Kansas City, MO Been Liked: 1 time
|
most programs that would rename them are done with the title, not the ID3 tags.
|
|
Top |
|
|
exweedfarmer
|
Posted: Tue Oct 21, 2008 11:02 am |
|
|
Super Poster |
|
Joined: Tue Jan 24, 2006 7:34 pm Posts: 1227 Location: Completely Lost Been Liked: 15 times
|
earlchagnon @ Tue Oct 21, 2008 7:16 am wrote: Hey everyone, I'm running into a little dilema I hope can be resolved here. Here goes: I have a group of folders with mp3's and their associated cdg files. How can I zip these files down in a way that will give me the song title AND the artist info. It seems I can only get the song title, and when I try renaming mp3 tags and/or files the programs i use won't do anything. Very fustrating, as I don't want to manually rename 700 files!
Does anybody have a solution?
-e
Let's restate the question and see if the answer presents itself.
"I want to hit myself in the head with a hammer (zipping) because someone told me it was the thing to do. But, when I hit myself it makes me dizzy, also my hat doesn't fit properly anymore and blood spatter has made the label in the hat unreadable even if I wasn't dizzy. What can I do?"
Thus restated, some might conclude that hitting yourself in the head with a hammer (zipping) in the first place may have been ill advised.
Try, not hiting.
Try, not zipping. Another victory for William of Ocham!!!!!
_________________ Okay, who took my pants?
|
|
Top |
|
|
knightshow
|
Posted: Tue Oct 21, 2008 11:26 am |
|
Joined: Thu Nov 07, 2002 2:40 am Posts: 7468 Location: Kansas City, MO Been Liked: 1 time
|
I don't PERSONALLY use .zip files for karaoke, other than storing them on my other hard drive. BUT if someone asks me a question, I'll try to answer them. Because what works for me doesn't necessarily work for someone else!
|
|
Top |
|
|
mckyj57
|
Posted: Tue Oct 21, 2008 12:00 pm |
|
Joined: Tue Apr 04, 2006 9:24 pm Posts: 5576 Location: Cocoa Beach Been Liked: 122 times
|
There is a program which claims to rename files supporting MP3 tags:
http://www.coolutils.com/VisualRenamer
As for the CDG part, I can't be sure what it does. And I have *no* knowledge of the program.
I can write such a program in a few minutes, but you would need Perl along with the MP3::Tag module. Here is the program:
[pre]#!/usr/bin/perl
use MP3::Tag;
use Getopt::Std;
getopts('v');
my @files = glob('*.mp3');
for my $filename (@files) {
my $cdgfile = $filename;
$cdgfile =~ s/\.(\w+)$/.cdg/;
unless (-f $cdgfile) {
warn "No CDG file to match $filename, skipping.\n";
}
my $mp3 = MP3::Tag->new($filename);
# get some information about the file in the easiest way
my ($title, $track, $artist, $album, $comment, $year, $genre) =
$mp3->autoinfo();
unless($title and $artist) {
warn "No artist and title tags in $filename, skipping.\n";
}
# Fix common naming problems
for(\$artist, \$title) {
$$_ =~ s/ _ / \& /g;
$$_ =~ s/\.//g;
$$_ =~ s/"/'/g;
}
rename $filename, "$artist - $title.mp3"
and $opt{v} and warn "Renamed $filename -> $artist - $title.mp3\n";
rename $cdgfile, "$artist - $title.cdg"
and $opt{v} and warn "Renamed $cdgfile -> $artist - $title.cdg\n";
}
[/pre]
Now install ActiveState Perl (or whatever it is called these days) and get the MP3::Tag module. And you have it.
_________________ [color=#ffff55]Mickey J.[/color] Alas for those who never sing, but die with all their music in them. -- Oliver Wendell Holmes, Sr.
|
|
Top |
|
|
sw00000p
|
Posted: Tue Oct 21, 2008 3:20 pm |
|
|
Advanced Poster |
|
Joined: Fri Jun 29, 2007 7:07 am Posts: 351 Been Liked: 0 time
|
earlchagnon @ Tue Oct 21, 2008 8:11 am wrote: I'd like either both files to be renamed: Addicted to Love - Robert Palmer.cdg Addicted to Love - Robert Palmer.mp3 -e
Here's a user friendly simple suggestion! Load your MP3+G files unzipped into one folder.
* Download Tag & Rename (FREE) and open it up.
* Browse to the folder where your MP3+G files are.
* Click on the various boxes to obtain the desired Naming Format!
* Select Rename and Both (.MP3 and the .CDG) files are Renamed
NOTE: Only MP3 files are displayed but both files are renamed.
You can Batch rename an entire folder in one sw00000p.
On the Top of Tag & Rename are 3 Boxes to choose from:
Box 1 - Rename Files (F4)
Box 2 - Multifile Tag Editor (Ctrl +F4)
Box 3 - Get Tags from File Name (Shift F4)
EXAMPLE 01:
Addicted to Love - Robert Palmer = TITLE - ARTIST
* Select Box 1 and select MASK EDITOR
* Click the TITLE (%2) box
* Type: SPACE DASH SPACE
* Click the ARTIST (%1) box
* Select Preview then Rename
DONE!
RESULT: Addicted to Love - Robert Palmer
Kind Regards,
sw00000p
|
|
Top |
|
|
sw00000p
|
Posted: Tue Oct 21, 2008 3:31 pm |
|
|
Advanced Poster |
|
Joined: Fri Jun 29, 2007 7:07 am Posts: 351 Been Liked: 0 time
|
Now to zip these files... Download the latest MP3+G Toolz. (FREE)
Open MP3+G Toolz by Right-Clicking the folder containing your MP3+G files.
Select / Options
Under Auto-Rename Naming Format TYPE:
TITLE - ARTIST
Select / OK
Select / Convert Audio+G to Zip
Select / Start
DONE!
Kind Regards,
sw00000p
|
|
Top |
|
|
cuhnkedrik
|
Posted: Mon Oct 02, 2023 12:24 am |
|
Joined: Mon Oct 02, 2023 12:21 am Posts: 1 Been Liked: 0 time
|
[quote="earlchagnon"]Hey everyone, I'm running into a little dilema I hope can be resolved here. Here goes: I have a group of folders with mp3's and their associated cdg files. How can I zip these files down in a way that will give me the song title AND the artist info. It seems I can only get the song title, and when I try renaming mp3 tags and/or files the programs i use won't do anything. Very fustrating, as I don't want to manually rename 700 files!
Does anybody have a solution?
-e[/quote] Let’s try restating the question to see if anything new emerges.
Someone advised me to "zip," and now I feel like hitting myself over the head with a hammer. The problem is that I get dizzy when I hit myself, my hat doesn't fit right, and the label is unreadable due to blood spatter. How should I proceed?
Now that it's been rephrased like this, maybe it's not such a good idea to strike yourself over the head with a hammer (zip) to begin with.
Instead of hitting, try.
|
|
Top |
|
|
DannyG2006
|
Posted: Fri Mar 15, 2024 6:29 am |
|
Joined: Sun Nov 27, 2005 11:31 am Posts: 5395 Location: Watebrury, CT Been Liked: 406 times
|
I know that this is an old post but I have found a program that not only names from the tags but will name the cdg file as well. MP3Tag. It will also rename MP4 files as well. I keep the program because of the mp4 renaming. I use latshaw's karaoke file manager for the mp3 files which I don't buy anymore.
_________________ The Line Array Experiment is over. Nothing to see here. Move along.
|
|
Top |
|
|
|
Page 1 of 1
|
[ 11 posts ] |
|
Who is online |
Users browsing this forum: No registered users and 295 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
|
|