This API was originally conceived as part of the JavaScript GameBoy Color emulator handling audio support for various browsers. Since Firefox 4.0 only had the Mozilla Audio Data API and experimental (at the time) WebKit browsers utilized the Web Audio API, there instantly was a need for abstracting the two APIs. This simple JavaScript library abstracts the push-for-audio API of Mozilla Audio and the passive callback API of Web Audio and introduces an abstraction layers that provides a push-for-audio and a callback API in one.
As of June 4, 2011 Adobe Flash support (ActionScript 3 / Flash 10) has been added as a fallback of Mozilla Audio Data API and the WebKit Web Audio API. The WAV PCM Data URI fallback now is a fallback for when Flash support is not found or is out of date.
- new XAudioServer(int channels, int sampleRate, int bufferLow, int bufferHigh, function underRunCallback, int defaultNeutralLevel);
- Make sure only one instance of XAudioServer is running at any time.
- bufferLow MUST be less than bufferHigh.
-
Arguments: Passed the number of samples that are needed to replenish the internal audio buffer back to bufferLow.
Functionality: JS developer set callback that can pass back any number of samples to replenish the audio buffer with.
Return: Array of samples to be passed into the underlying audio buffer. MUST be divisible by number of channels used (Whole frames required.). The return array length DOES NOT NEED to be of length samplesRequested. - defaultNeutralLevel is the default silence waveform position (0 is the true natural default that you can override here.).
- void writeAudio (Array buffer)
- Arguments: Pass an array of audio samples that is divisible by the number of audio channels utilized (buffer % channels == 0).
- Functionality: Passes the audio samples directly into the underlying audio subsystem, and can call the specified sample buffer under-run callback as needed (Does the equivalent of executeCallback in addition to the forced sample input.).
- Return: void (None).
- int remainingBuffer (void)
- Arguments: void (None).
- Functionality: Returns the number of samples left in the audio system before running out of playable samples.
- Return: int samples_remaining
- void executeCallback (void)
- Arguments: void (None).
- Functionality: Executes the audio sample under-run callback if the samples remaining is below the set buffer low limit.
- Return: void (None).