The MediaTrackConstraints
dictionary's facingMode
property is a ConstrainDOMString
describing the requested or mandatory constraints placed upon the value of the facingMode
constrainable property.
If needed, you can determine whether or not this constraint is supported by checking the value of MediaTrackSupportedConstraints.facingMode
as returned by a call to MediaDevices.getSupportedConstraints()
. However, typically this is unnecessary since browsers will simply ignore any constraints they're unfamiliar with.
var constraintsObject = { facingMode: constraint }; constraintsObject.facingMode = constraint;
An object based on ConstrainDOMString
specifying one or more acceptable, ideal, and/or exact (mandatory) facing modes are acceptable for a video track.
An exact
value in this case indicates that the specified facing mode is specifically required; for example:
var constraints = { facingMode: { exact: "user" } };
This indicates that only a user-facing camera is acceptable; if there is no user-facing camera, or the user declines permission to use that camera, the media request will fail.
The following strings are permitted values for the facing mode. These may represent separate cameras, or they may represent directions in which an adjustable camera can be pointed.
"user"
"environment"
"left"
"right"
See "Example: Constraint exerciser" in Capabilities, constraints, and settings for an example.
Specification | Status | Comment |
---|---|---|
Media Capture and Streams The definition of 'facingMode' in that specification. | Editor's Draft | Initial specification. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 50 (50) | No support | (Yes) | ? |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 50.0 (50) | No support | ? | ? | (Yes) |
MediaTrackConstraints
MediaDevices.getSupportedConstraints()
MediaTrackSupportedConstraints
MediaStreamTrack
© 2005–2017 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/MediaTrackConstraints/facingMode