MediaRecorderErrorEvent()

The MediaRecorderErrorEvent() constructor creates a new MediaRecorderErrorEvent object that represents an error that occurred during the recording of media by the MediaStream Recording API.

In general, you won't create these yourself; they are delivered to your implementation of MediaRecorder.onerror when errors occur while recording media.

Syntax

var errorEvent = new MediaRecorderErrorEvent(errorInfo)

Parameters

errorInfo
An object describing the error object to be created. It must contain the error property at a minimum.
error
A DOMException that describes the error that occurred. This object's name property should indicate the name of the error that occurred. The other fields may or may not be present.

Some user agents add to the error object other properties that provide information such as stack dumps, the name of the JavaScript file and the line number where the error occurred, and other debugging aids, but you should not rely on this information in a production environment.

Specifications

Specification Status Comment
MediaStream Recording
The definition of 'MediaRecorderErrorEvent()' in that specification.
Working Draft Initial definition.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
MediaRecorderErrorEvent() constructorChrome No support No
Notes
No support No
Notes
Notes Uses a generic event with an error property.
Edge No support No
Notes
No support No
Notes
Notes Uses a generic event with an error property.
Firefox Full support 57IE No support NoOpera No support No
Notes
No support No
Notes
Notes Uses a generic event with an error property.
Safari No support NoWebView Android No support NoChrome Android No support No
Notes
No support No
Notes
Notes Uses a generic event with an error property.
Firefox Android Full support 57Opera Android No support No
Notes
No support No
Notes
Notes Uses a generic event with an error property.
Safari iOS No support NoSamsung Internet Android No support No
Notes
No support No
Notes
Notes Uses a generic event with an error property.

Legend

Full support
Full support
No support
No support
See implementation notes.
See implementation notes.