A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/pause below:

MediaRecorder: pause() method - Web APIs

MediaRecorder: pause() method

Baseline Widely available

The pause() method of the MediaRecorder interface is used to pause recording of media streams.

When a MediaRecorder object's pause() method is called, the browser queues a task that runs the below steps:

  1. If MediaRecorder.state is "inactive", raise a DOM InvalidState error and terminate these steps. If not, continue to the next step.
  2. Set MediaRecorder.state to "paused".
  3. Stop gathering data into the current Blob, but keep it available so that recording can be resumed later on.
  4. Raise a pause event.
Syntax Parameters

None.

Return value

None (undefined).

Exceptions
InvalidStateError DOMException

Thrown if the MediaRecorder is currently "inactive"; you cannot pause the recording if the MediaRecorder is not active. If you call pause() while already paused, the method silently does nothing.

Examples
pause.onclick = () => {
  mediaRecorder.pause();
  console.log("recording paused");
};
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.3