[OGG Vorbis] id3 tags [solved]

Started by
3 comments, last by SigmaX 17 years, 5 months ago
Is there a way to read id3 tags from .ogg files? Thanks! [Edited by - SigmaX on October 25, 2006 1:36:12 PM]
-)------ Ed
Advertisement
Yes. Check the examples. You can get author, date, description.
I don't remember the function calls.
Sig: http://glhlib.sourceforge.net
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
Cool. I'm afraid I'm not sure which examples you mean though.
-)------ Ed
If you check out the Ogg Vorbis documentation, look for the index page in the Vorbis documentation, then check out the overview, file information, and the function ov_comment(), which returns a pointer to a vorbis_comment, which has all of the comments in it. By the way, the topic should be '[Ogg Vorbis] comments', since Open AL doesn't do any file opening for you.
Quote:Original post by Gorax
If you check out the Ogg Vorbis documentation, look for the index page in the Vorbis documentation, then check out the overview, file information, and the function ov_comment(), which returns a pointer to a vorbis_comment, which has all of the comments in it. By the way, the topic should be '[Ogg Vorbis] comments', since Open AL doesn't do any file opening for you.



Awsome! That's exactally what I needed. It works great now. Thank you very much.
-)------ Ed

This topic is closed to new replies.

Advertisement