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 void.

Exceptions

The promise is rejected when the following exception is encountered.

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

Specifications

Specification Status Comment
Web Audio API
The definition of 'resume()' in that specification.
Working Draft Initial definition.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
resumeChrome Full support 49Edge Full support ≤18Firefox No support NoIE No support NoOpera Full support 36Safari No support NoWebView Android Full support 49Chrome Android Full support 49Firefox Android No support NoOpera Android Full support 36Safari iOS No support NoSamsung Internet Android Full support 5.0

Legend

Full support
Full support
No support
No support