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?