Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Id3 tag Genre & Comment Line (Read 8586 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Id3 tag Genre & Comment Line

I am setting up EAC after a reinstal and am setting my compression options.  I'm bypassing EAC's tag writer and using the following command line for LAME (found on one of the other threads) to write the id3 tags.

--alt-preset standard --add-id3v2 --pad-id3v2 --ta "%a" --tt "%t" --tl "%g" --ty "%y" --tn "%n" %s %d

My question is, What specifically do I add to this command to additionally fill in the 'Genre' and 'Comments' lines?  It's a pain to have to go back and manually edit all the tags after encoding to add this info.

If possible, could someone actually write out the entire character string so I could just copy and paste it into the command  line option in EAC.  I realize I would have to add my own text for the comment line.  Thanks in advance.

Id3 tag Genre & Comment Line

Reply #1
For genre add --tg "%m"
There's a reason why it was removed from the standard recommended line; namely that lame.exe chokes if fed parameters not predefined in it's genre list.
You can run lame --genre-list to print a list of the safe ones.
"ONLY THOSE WHO ATTEMPT THE IMPOSSIBLE WILL ACHIEVE THE ABSURD"
        - Oceania Association of Autonomous Astronauts

 

Id3 tag Genre & Comment Line

Reply #2
Quote
For genre add --tg "%m"
There's a reason why it was removed from the standard recommended line; namely that lame.exe chokes if fed parameters not predefined in it's genre list.
You can run lame --genre-list to print a list of the safe ones.
[a href="index.php?act=findpost&pid=293196"][{POST_SNAPBACK}][/a]


I recently ran into this problem.  I bypassed it by using --ignore-tag-errors.  That way I don't have to double check the genres to make sure they line up with the predefined ones.

Id3 tag Genre & Comment Line

Reply #3
OK. And --tc are comment... So assuming you are using 3.96.1 we drop the "alt" (use --alt-preset if you use 3.90.3), you could try out this line:

Code: [Select]
--preset standard --add-id3v2 --pad-id3v2 --ignore-tag-errors --ta "%a" --tt "%t" --tl "%g" --ty "%y" --tn "%n" --tg "%m" --tc "Blah Blah" %s %d
"ONLY THOSE WHO ATTEMPT THE IMPOSSIBLE WILL ACHIEVE THE ABSURD"
        - Oceania Association of Autonomous Astronauts

Id3 tag Genre & Comment Line

Reply #4
Quote
OK. And --tc are comment... So assuming you are using 3.96.1 we drop the "alt" (use --alt-preset if you use 3.90.3), you could try out this line:

Code: [Select]
--preset standard --add-id3v2 --pad-id3v2 --ignore-tag-errors --ta "%a" --tt "%t" --tl "%g" --ty "%y" --tn "%n" --tg "%m" --tc "Blah Blah" %s %d

[a href="index.php?act=findpost&pid=293202"][{POST_SNAPBACK}][/a]

That post is SO helpful to me. Thank You     

Id3 tag Genre & Comment Line

Reply #5
Hello, I notice you are using the command --tc "Blah Blah" to add a Comment field to the tag.

I've been trying to use %e to fill in Comment fields, but I can't seem to find the box I need to fill in in EAC to feed that %e value. Everytime I tried this (testing a 3-track CD copied to compressed image + CUE sheet), the comment was set to "track 2".

Is there any way to change the Comment in EAC rather than in the command line ?

Thanks.

Id3 tag Genre & Comment Line

Reply #6
Yes. You can specify your comment on the Offset tab of Compression Options.

Id3 tag Genre & Comment Line

Reply #7
Quote
Yes. You can specify your comment on the Offset tab of Compression Options.
[a href="index.php?act=findpost&pid=295002"][{POST_SNAPBACK}][/a]

That will only work if you check "Add ID3 tag" under "External Compression". It's not recommended to let EAC itself set the tags on the files, it's been found to be unreliable...
"ONLY THOSE WHO ATTEMPT THE IMPOSSIBLE WILL ACHIEVE THE ABSURD"
        - Oceania Association of Autonomous Astronauts

Id3 tag Genre & Comment Line

Reply #8
Agreed. Does the new EAC version 0.95Beta1 add any options to set a comment without using id3 tagging ?

Id3 tag Genre & Comment Line

Reply #9
New info  just came to my attention; --ignore-tag-errors doesn't work with 3.90.3. I've only tested this with 3.96.1....
"ONLY THOSE WHO ATTEMPT THE IMPOSSIBLE WILL ACHIEVE THE ABSURD"
        - Oceania Association of Autonomous Astronauts

Id3 tag Genre & Comment Line

Reply #10
Quote
It's not recommended to let EAC itself set the tags on the files, it's been found to be unreliable...
[a href="index.php?act=findpost&pid=299469"][{POST_SNAPBACK}][/a]

How is that?

Id3 tag Genre & Comment Line

Reply #11
Quote
How is that?
[{POST_SNAPBACK}][/a]

First of all it's mentioned [a href="http://www.hydrogenaudio.org/forums/index.php?showtopic=28124&view=findpost&p=1595]here[/url].
One thing I've experienced myself is simply that EAC doesn't always add all tags. Basically, if the chosen encoder (or wapet or something) can tag the files I choose that over EAC.
Also for those encoders that have something like --deleteinput I generally let the encoder delete the wav file rather than EAC. (The encoder know when the wav file is not needed anymore, in some rare instances EAC can delete it prematurely.)
"ONLY THOSE WHO ATTEMPT THE IMPOSSIBLE WILL ACHIEVE THE ABSURD"
        - Oceania Association of Autonomous Astronauts

Id3 tag Genre & Comment Line

Reply #12
Quote
Also for those encoders that have something like --deleteinput I generally let the encoder delete the wav file rather than EAC. (The encoder know when the wav file is not needed anymore, in some rare instances EAC can delete it prematurely.)
[a href="index.php?act=findpost&pid=299935"][{POST_SNAPBACK}][/a]


When will LAME have a "delete input on encoding completion" option?