I have a .spx file (an Ogg file with Speex-encoded audio). I would like to use Java to pull the Speex-encoded bytes out of the Ogg container.

The problem is, it seems all of the Java libraries I can find (JSpeex, JOrbis) are written with the assumption that I would also like to decode the audio into raw pcm, which I do not.

Is there a generic Ogg format reader library out there for Java? On the other hand, is it possible to use parts of JSpeex or JOrbis to do what I want?

link|improve this question

What else could you want it as? – Ignacio Vazquez-Abrams Aug 4 '11 at 23:51
I want the original speex-encoded bit stream. – paleozogt Aug 4 '11 at 23:55
feedback

1 Answer

I could not find an Ogg library in Java after some shallow searching.

But if you are willing to implement Ogg parsing from scratch, the words straight from the horse's mouth are readily available:

(Top page: http://www.xiph.org/vorbis/doc/)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.