MediaTrackSettings.displaySurface
The MediaTrackSettings
dictionary's displaySurface
property indicates the type of display surface being captured.
Syntax
displaySurface = mediaTrackSettings.displaySurface;
Value
The value of displaySurface
is a string that comes from the DisplayCaptureSurfaceType
enumerated type, and is one of the following:
application
-
The stream's video track contains all of the windows belonging to the application chosen by the user. The windows are aggragated into a single video track, with any empty space filled with a backdrop; that backdrop is selected by the user agent.
browser
-
The stream's video track presents the entire contents of a single browser tab which the user selected during the
getDisplayMedia()
call. monitor
-
The video track in the stream presents the complete contents of one or more of the user's screens. Any empty space (if the displays are of different dimensions) is filled with a backdrop chosen by the user agent.
window
-
The stream's video track presents the contents of a single window selected by the user. The window may be from any application, not necessarily just from within the user agent.
Not all user agents support all of these surface types.
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
displaySurface |
71 |
≤79 |
No |
No |
Yes |
11.1 |
71 |
71 |
No |
? |
11.3 |
10.0 |
See also
- Screen Capture API
- Using the screen capture API
- Capabilities, constraints, and settings
MediaDevices.getDisplayMedia()
MediaStreamTrack.getConstraints()
MediaStreamTrack.applyConstraints()
MediaStreamTrack.getSettings()
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackSettings/displaySurface