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.

link|improve this question

feedback

1 Answer

How about base64?

<audio src="<!--base64 data-->" controls></audio>

instead of

<audio src="http://somewhere/some.ogg" controls></audio>

Demo on jsfiddle (Ogg sample from wikipedia)

link|improve this answer
How does that work with the data that I get streamed via WebSockets? WebSockets are not optional for me. The audio that I get is rendered and encoded on the fly. – Fair Dinkum Thinkum Jan 23 at 13:48
You can get base64-encoded string from binary data using window.btoa and other alternative methods, then set as src attribute of <audio>. developer.mozilla.org/en/DOM/window.btoa – Rufus Jan 25 at 7:00
base64-encoding is not the problem I see. The problem is that I want to start playback as soon as I receive the first chunks of audio data. Is it possible to play the audio while it is streamed? I don't want to wait for the whole 'file' before playback starts. This is possible with Webkits Web Audio API. So I have to be able to decode each single chunk and somehow 'queue' it for playback. – Fair Dinkum Thinkum Jan 25 at 7:12
feedback

Your Answer

 
or
required, but never shown

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