This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The getDisplayMedia() method of the MediaDevices interface prompts the user to select and grant permission to capture the contents of a display or portion thereof (such as a window) as a MediaStream.
The resulting stream can then be recorded using the MediaStream Recording API or transmitted as part of a WebRTC session.
See Using the Screen Capture API for more details and an example.
getDisplayMedia() getDisplayMedia(options)
options OptionalAn optional object specifying requirements for the returned MediaStream. The options for getDisplayMedia() work in the same as the constraints for the MediaDevices.getUserMedia() method, although in that case only audio and video can be specified. The list of possible option properties for getDisplayMedia() is as follows:
video OptionalA boolean or a MediaTrackConstraints instance; the default value is true. If this option is omitted or set to true, the returned MediaStream will contain a video track. Since getDisplayMedia() requires a video track, if this option is set to false the promise will reject with a TypeError.
audio OptionalA boolean or a MediaTrackConstraints instance; the default value is false. A value of true indicates that the returned MediaStream will contain an audio track, if audio is supported and available for the display surface chosen by the user.
controller Experimental OptionalA CaptureController object instance containing methods that can be used to further manipulate the capture session if included.
monitorTypeSurfaces Experimental OptionalAn enumerated value specifying whether the browser should offer entire screens in the screen capture options presented to the user alongside tab and window options. This option is intended to protect companies from leakage of private information through employee error when using video conferencing apps. Possible values are include, which hints that the browser should include screen options, and exclude, which hints that they should be excluded. A default value is not mandated by the spec; see the Browser compatibility section for browser-specific defaults.
Note: You cannot set monitorTypeSurfaces: "exclude" at the same time as displaySurface: "monitor" as the two settings are contradictory. Trying to do so will result in the getDisplayMedia() call failing with a TypeError.
preferCurrentTab Non-standard Experimental OptionalA boolean; a value of true instructs the browser to offer the current tab as the most prominent capture source, i.e., as a separate "This Tab" option in the "Choose what to share" options presented to the user. This is useful as many app types generally just want to share the current tab. For example, a slide deck app might want to let the user stream the current tab containing the presentation to a virtual conference. A default value is not mandated by the spec; see the Browser compatibility section for browser-specific defaults.
selfBrowserSurface Experimental OptionalAn enumerated value specifying whether the browser should allow the user to select the current tab for capture. This helps to avoid the "infinite hall of mirrors" effect experienced when a video conferencing app inadvertently shares its own display. Possible values are include, which hints that the browser should include the current tab in the choices offered for capture, and exclude, which hints that it should be excluded. A default value is not mandated by the spec; see the Browser compatibility section for browser-specific defaults.
surfaceSwitching Experimental OptionalAn enumerated value specifying whether the browser should display a control to allow the user to dynamically switch the shared tab during screen-sharing. This is much more convenient than having to go through the whole sharing process again each time a user wants to switch the shared tab. Possible values are include, which hints that the browser should include the control, and exclude, which hints that it should not be shown. A default value is not mandated by the spec; see the Browser compatibility section for browser-specific defaults.
systemAudio Experimental OptionalAn enumerated value specifying whether the browser should include the system audio among the possible audio sources offered to the user. Possible values are include, which hints that the browser should include the system audio in the list of choices, and exclude, which hints that it should be excluded. A default value is not mandated by the spec; see the Browser compatibility section for browser-specific defaults.
Note: See the article Capabilities, constraints, and settings for a lot more detail on how these options work.
A Promise that resolves to a MediaStream containing a video track whose contents come from a user-selected screen area, as well as an optional audio track.
Note: Browser support for audio tracks varies, both in terms of whether or not they're supported at all by the media recorder and in terms of the audio sources supported. Check the compatibility table for details for each browser.
AbortError DOMException
Thrown if an error or failure does not match any of the other exceptions listed here.
InvalidStateError DOMException
Thrown if the call to getDisplayMedia() was not made from code running due to a transient activation, such as an event handler. Or if the browser context is not fully active or does not focused. Or if the controller options has been already used in creating another MediaStream.
NotAllowedError DOMException
Thrown if the permission to access a screen area was denied by the user, or the current browsing instance is not permitted access to screen sharing (for example by a Permissions Policy).
NotFoundError DOMException
Thrown if no sources of screen video are available for capture.
NotReadableError DOMException
Thrown if the user selected a screen, window, tab, or another source of screen data, but a hardware or operating system level error or lockout occurred, preventing the sharing of the selected source.
OverconstrainedError DOMException
Thrown if, after creating the stream, applying any specified constraints fails because no compatible stream could be generated.
TypeErrorThrown if the specified options include values that are not permitted when calling getDisplayMedia(), for example a video property set to false, or if any specified MediaTrackConstraints are not permitted. min and exact values are not permitted in constraints used in getDisplayMedia() calls.
Because getDisplayMedia() could be used in nefarious ways, it can be a source of significant privacy and security concerns. For that reason, the specification details measures browsers are required to take in order to fully support getDisplayMedia().
getDisplayMedia() cannot be persisted for reuse. The user must be prompted for permission every time.In the example below a startCapture() method is created, which initiates screen capture given a set of options specified by the displayMediaOptions parameter.
const displayMediaOptions = {
video: {
displaySurface: "browser",
},
audio: {
suppressLocalAudioPlayback: false,
},
preferCurrentTab: false,
selfBrowserSurface: "exclude",
systemAudio: "include",
surfaceSwitching: "include",
monitorTypeSurfaces: "include",
};
async function startCapture(displayMediaOptions) {
let captureStream;
try {
captureStream =
await navigator.mediaDevices.getDisplayMedia(displayMediaOptions);
} catch (err) {
console.error(`Error: ${err}`);
}
return captureStream;
}
This uses await to asynchronously wait for getDisplayMedia() to resolve with a MediaStream which contains the display contents as requested by the specified options. The stream is then returned to the caller for use, perhaps for adding to a WebRTC call using RTCPeerConnection.addTrack() to add the video track from the stream.
Note: The Screen sharing controls demo provides a complete implementation that allows you to create a screen capture with your choice of getDisplayMedia() constraints and options.
| Specification |
|---|
| Screen Capture> # dom-mediadevices-getdisplaymedia> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
getDisplayMedia |
72 | 7917–79Available as a member ofNavigator instead of MediaDevices. |
6633–66Since Firefox 33 you can capture screen data usinggetUserMedia(), with a video constraint called mediaSource. Before 52 it relied on a client-configurable list of allowed sites. |
60 | 13 | NoFrom Chrome Android 72 to 88, this method was exposed, but always failed withNotAllowedError. See bug 40418135. |
NoFrom Firefox Android 66 to 79, this method was exposed, but always failed withNotAllowedError. |
NoFrom Opera Android 51 to 88, this method was exposed, but always failed withNotAllowedError. See bug 40418135. |
No | NoFrom Samsung Internet 11.0 to 88, this method was exposed, but always failed withNotAllowedError. See bug 40418135. |
NoFrom WebView Android 72 to 88, this method was exposed, but always failed withNotAllowedError. See bug 40418135. |
No |
audio_capture_support |
74On Windows and ChromeOS, the entire system audio can be captured when sharing an entire screen. On Linux and macOS, only the audio of a tab can be captured. |
79On Windows and ChromeOS, the entire system audio can be captured when sharing an entire screen. On Linux and macOS, only the audio of a tab can be captured. |
No | 62On Windows and ChromeOS, the entire system audio can be captured when sharing an entire screen. On Linux and macOS, only the audio of a tab can be captured. |
No | No | No | No | No | No | No | No |
controller_option |
109 | 109 | No | 95 | No | No | No | No | No | No | No | No |
monitorTypeSurfaces_option |
119Default value =include |
119Default value =include |
No | 105Default value =include |
No | No | No | No | No | No | No | No |
preferCurrentTab_option |
94Default value =false |
94Default value =false |
No | 80Default value =false |
No | No | No | No | No | No | No | No |
selfBrowserSurface_option |
112Default value =exclude107–111Default value =include |
112Default value =exclude107–111Default value =include |
No |
98Default value =exclude93–97Default value =include |
No | No | No | No | No | No | No | No |
surfaceSwitching_option |
107Default value =exclude |
107Default value =exclude |
No | 93Default value =exclude |
No | No | No | No | No | No | No | No |
systemAudio_option |
105Default value =include |
105Default value =include |
No | 91Default value =include |
No | No | No | No | No | No | No | No |
getUserMedia(): Capturing media from a camera and/or microphone
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getDisplayMedia