W3cubDocs

/Web APIs

OfflineAudioContext: OfflineAudioContext() constructor

The OfflineAudioContext() constructor—part of the Web Audio API—creates and returns a new OfflineAudioContext object instance, which can then be used to render audio to an AudioBuffer rather than to an audio output device.

Syntax

js

new OfflineAudioContext(options)

new OfflineAudioContext(numberOfChannels, length, sampleRate)

Parameters

You can specify the parameters for the OfflineAudioContext() constructor as either the same set of parameters as are inputs into the BaseAudioContext.createBuffer method, or by passing those parameters in an options object. Either way, the individual parameters are the same.

numberOfChannels

An integer specifying the number of channels the resulting AudioBuffer should have.

length

An integer specifying the size of the buffer to create for the audio context, in sample-frames, where one sample-frame is a unit that can contain a single sample of audio data for every channel in the audio data. For example, a 5-second buffer with a sampleRate of 48000Hz would have a length of 5 * 48000 = 240000 sample-frames.

sampleRate

The sample-rate of the linear audio data in sample-frames per second. All user agents are required to support a range of 8000Hz to 96000Hz, and may support a wider range than that. The most commonly-used rate is 44100Hz, which is the sample rate used by CD audio.

It is important to note that, whereas you can create a new AudioContext using the new AudioContext() constructor with no arguments, the OfflineAudioContext() constructor requires three arguments, since it needs to create an AudioBuffer. This works in exactly the same way as when you create a new AudioBuffer with the BaseAudioContext.createBuffer method. For more detail, read Audio buffers: frames, samples and channels from our Basic concepts guide.

Return value

A new OfflineAudioContext object whose associated AudioBuffer is configured as requested.

Like a regular AudioContext, an OfflineAudioContext can be the target of events, therefore it implements the EventTarget interface.

Examples

js

const offlineCtx = new OfflineAudioContext({
  numberOfChannels: 2,
  length: 44100 * 40,
  sampleRate: 44100,
});
const source = offlineCtx.createBufferSource();
// …

For a full working example, see our offline-audio-context-promise GitHub repo (see the source code too.)

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
OfflineAudioContext 3525–57 12 25 No 2215–44 14.17–14.1 374.4–57 3525–57 25 2214–43 14.57–14.5 3.01.5–7.0
parameters_accepted_in_an_object 62 ≤79 57 No 49 14.1 62 62 57 46 14.5 8.0

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/OfflineAudioContext