I get a stream of ogg encoded audio data from a server via WebSockets. I want to feed this stream to Mozilla's Audio Data API without using HTML5 audio tags. It is possible to write audio data but it has to be raw audio data.
Unlike the new Web Audio API implemented in WebKit there does not seem to be a decode method available in Mozilla's Audio Data API. Is there a way to decode the Ogg data in Firefox?
Edit: Here some code to show what I want to do. This is how it works with Chromes Web Audio API. I receive a continues stream of encoded audio chunks. Each chunk is then decoded with decodeAudioData.
In case of Chrome I get chunks of MP3 encoded audio data. For Firefox the server can provide chunks of Ogg encoded audio data. I need a way to decode each chunk separately and feed it to Mozillas Audio Data API somehow.
var ws = new WebSocket('ws://localhost:8080/data');
ws.binaryType = 'arraybuffer';
ws.onmessage = function(e) {
console.log('About to decode ' + e.data.byteLength + ' bytes of audio data');
audioContext.decodeAudioData(e.data, function (buffer) {
console.log('Finished decoding');
buffer.offset = 0;
bufferQueue.push(buffer);
});
}
Snippet from https://github.com/polaris/ws-audio-example
audioContext is of type webkitAudioContext.