OfflineAudioContext.resume()

The resume() method of the OfflineAudioContext interface resumes the progression of time in an audio context that has been suspended. The promise resolves immediately because the OfflineAudioContext does not require the audio hardware. If the context is not currently suspended or the rendering has not started, the promise is rejected with InvalidStateError.

Syntax

OfflineAudioContext.resume().then(function() { /* ... */ });

Parameters

None.

Returns

A Promise resolving to undefined.

Exceptions

The promise is rejected when an exception is encountered.

InvalidStateError DOMException

Returned if the context is not currently suspended or the rendering has not started.

Specifications

Specification
Web Audio API
# dom-offlineaudiocontext-resume

Browser compatibility

BCD tables only load in the browser