tags:

views:

9

answers:

1

I'm trying to read a Vorbis-Stream and am doing it by the specification. At start, I've got the Identification, Comment and Setup-Header (starting with the bytes 01,03,05), but I don't know how to determine the length of the individual blocks.

Anyone can help me with that ? I don't need to decode the stream itself. I just want the metadata.

A: 

Why are you trying to re-invent the wheel? when there's solutions such as Ogg Vorbis Interop, or an article on CodeProject that talks about implementing a Ogg Vorbis player.

tommieb75
I don't need the stream-data itself.Just the metadata.
Hedge