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: EAC + LAME: unwanted tags (Read 1404 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

EAC + LAME: unwanted tags

Hello,

I'm using EAC v1.5 to rip my CDs to FLAC + MP3.

Everything is fine, except that LAME encoder adds those unneeded tags:



Here are my encoder options:
Quote
"-V0 --add-id3v2 --pad-id3v2 --ta \"%artist%\" --tt \"%title%\" --tg \"%genre%\" --tl \"%albumtitle%\" --ty \"%year%\" --tn \"%tracknr%/%numtracks%\" %source%"

LAME 3.100 x64, MD5: 2AC60218D0B6A3D8B4248E688A552BEB

Not a big issue, but I'd like to understand why those tags are added.

Thanks in advance.

Re: EAC + LAME: unwanted tags

Reply #1
Quote
I'm using EAC v1.5 to rip my CDs
lame.exe (not EAC) is adding TSSE and TLEN to the beginning of the file when ID3v2 tagging is enabled
Code: [Select]
00000000  49 44 33 03 00 00 00 00 01 4C 54 53 53 45 00 00  ID3......LTSSE..
00000010  00 31 00 00 00 4C 41 4D 45 20 36 34 62 69 74 73  .1...LAME 64bits
00000020  20 76 65 72 73 69 6F 6E 20 33 2E 31 30 30 2E 31   version 3.100.1
00000030  20 28 68 74 74 70 3A 2F 2F 6C 61 6D 65 2E 73 66   (http://lame.sf
00000040  2E 6E 65 74 29 54 4C 45 4E 00 00 00 07 00 00 00  .net)TLEN.......
00000050  32 30 39 32 31 33 00 00 00 00 00 00 00 00 00 00  209213..........
The above is from a file created using lame.exe via cmd.exe (command prompt).
The tags go away using the -id3v1-only option (all ID3v2 options removed).
korth

 

Re: EAC + LAME: unwanted tags

Reply #2
lame.exe (not EAC) is adding TSSE and TLEN to the beginning of the file when ID3v2 tagging is enabled
Thanks for the analysis, korth.
Indeed, LameDropXPd adds the same tags. Fields are a bit short with ID3v1, so I'll remove TSSE and TLEN tags with Kid3, not a big deal ;)