W3cubDocs

/DOM

MediaRecorderErrorEvent.constructor

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

Feature Chrome Edge Firefox Internet Explorer Opera Safari
Basic support No1 No 57 No No1 No
Feature Android webview Chrome for Android Edge mobile Firefox for Android IE mobile Opera Android iOS Safari
Basic support No No1 No 57 No No1 No

1. Uses a generic event with an error property.

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorderErrorEvent/MediaRecorderErrorEvent