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: which format is correct? (Read 4312 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

which format is correct?

Hello
could anybody confirm that vorbis field names are case-insensitive according to the standard.

Example - I'm encoding the same file by:
1. CDex with 'internal' Ogg Vorbis DLL Encoder (Xiph.Org libVorbis | 20050304)
2. EAC with oggenc2.exe (OggEnc v2.6 (libvorbis 1.1.1))

Next checking the output file by ogginfo:
1. TITLE=Monty Norman Orchestra / James Bond Theme
    ARTIST=Various
    ALBUM=James Bond 30th Anniversary - CD1
    TRACKNUMBER=1
    GENRE=Soundtrack
    DATE=1992
2. title=James Bond Theme
  artist=Monty Norman Orchestra
  genre=Soundtrack
  date=1992
  album=James Bond 30th Anniversary - CD1
  tracknumber=1

So you can see that in the 2nd case all the field names are lowercase. That's ok for most players, but it cause a problem for Twonky music server I'm using. I'll work with Twonky guys but for the moment id3tag tool solved the problem.

May be someone will be so kind to compile 'uppercase' version of oggenc2 ?
Thanks!!


which format is correct?

Reply #2
Quote
May be someone will be so kind to compile 'uppercase' version of oggenc2 ?
Thanks!!
[a href="index.php?act=findpost&pid=319715"][{POST_SNAPBACK}][/a]

Use this command line in EAC :

-q6 -c "ARTIST=%a" -c "TITLE=%t" -c "ALBUM=%g" -c "DATE=%y" -c "TRACKNUMBER=%n" -c "GENRE=%m" %s

-Martin.