MediaRecorder.state

The MediaRecorder.state read-only property returns the current state of the current MediaRecorder object.

Syntax

var state = MediaRecorder.state

Values

A AnimationPlayState object containing one of the following values:

Enumeration Description
inactive Recording is not occuring — it has either not been started yet, or it has been started and then stopped.
recording Recording has been started and the UA is capturing data.
paused Recording has been started, then paused, but not yet stopped or resumed.

Example

...

  record.onclick = function() {
    mediaRecorder.start();
    console.log(mediaRecorder.state);
    // Will return "recording"
    console.log("recorder started");
  }

...

Specifications

Specification Status Comment
MediaStream Recording
The definition of 'MediaRecorder.state' in that specification.
Working Draft Initial definition

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
stateChrome Full support 49
Full support 49
No support 47 — 49
Notes
Notes Prior to Chrome 49, only video is supported, not audio.
Edge Full support 79Firefox Full support 25IE No support NoOpera Full support 36Safari No support NoWebView Android Full support 49
Full support 49
No support 47 — 49
Notes
Notes Prior to Chrome 49, only video is supported, not audio.
Chrome Android Full support 49
Full support 49
No support 47 — 49
Notes
Notes Prior to Chrome 49, only video is supported, not audio.
Firefox Android Full support 25Opera Android Full support 36Safari iOS No support NoSamsung Internet Android Full support 5.0

Legend

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

See also