---
title: 媒体追踪约束
slug: Web/API/MediaTrackConstraints
translation_of: Web/API/MediaTrackConstraints
---
{{APIRef("媒体捕获与媒体流")}}
The MediaTrackConstraints
dictionary is used to describe a set of capabilities and the value or values each can take on. A constraints dictionary is passed into {{domxref("MediaStreamTrack.applyConstraints", "applyConstraints()")}} to allow a script to establish a set of exact (required) values or ranges and/or preferred values or ranges of values for the track, and the most recently-requested set of custom constraints can be retrieved by calling {{domxref("MediaStreamTrack.getConstraints", "getConstraints()")}}.
For each constraint, you can typically specify an exact value you need, an ideal value you want, a range of acceptable values, and/or a value which you'd like to be as close to as possible. The specifics vary somewhat depending on the type of the constrainable property.
To learn more about how constraints work, see Capabilities, constraints, and settings.
Properties
Some combination—but not necessarily all—of the following properties will exist on the object.
- {{domxref("MediaTrackConstraints.deviceId", "deviceId")}}
- A {{domxref("ConstrainDOMString")}} object specifying a device ID or an array of device IDs which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.groupId", "groupId")}}
- A {{domxref("ConstrainDOMString")}} object specifying a group ID or an array of group IDs which are acceptable and/or required.
Properties of audio tracks
- {{domxref("MediaTrackConstraints.autoGainControl", "autoGainControl")}}
- A {{domxref("ConstrainBoolean")}} object which specifies whether automatic gain control is preferred and/or required.
- {{domxref("MediaTrackConstraints.channelCount", "channelCount")}}
- A {{domxref("ConstrainLong")}} specifying the channel count or range of channel counts which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.echoCancellation", "echoCancellation")}}
- A {{domxref("ConstrainBoolean")}} object specifying whether or not echo cancellation is preferred and/or required.
- {{domxref("MediaTrackConstraints.latency", "latency")}}
- A {{domxref("ConstrainDouble")}} specifying the latency or range of latencies which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.noiseSuppression", "noiseSuppression")}}
- A {{domxref("ConstrainBoolean")}} which specifies whether noise suppression is preferred and/or required.
- {{domxref("MediaTrackConstraints.sampleRate", "sampleRate")}}
- A {{domxref("ConstrainLong")}} specifying the sample rate or range of sample rates which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.sampleSize", "sampleSize")}}
- A {{domxref("ConstrainLong")}} specifying the sample size or range of sample sizes which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.volume", "volume")}}
- A {{domxref("ConstrainDouble")}} specifying the volume or range of volumes which are acceptable and/or required.
Properties of image tracks
- {{domxref("MediaTrackConstraints.whiteBalanceMode","whiteBalanceMode")}}
- A {{jsxref("String")}} specifying one of
"none"
, "manual"
, "sigle-shot"
, or "continuous"
.
- {{domxref("MediaTrackConstraints.exposureMode","exposureMode")}}
- A {{jsxref("String")}} specifying one of
"none"
, "manual"
, "sigle-shot"
, or "continuous"
.
- {{domxref("MediaTrackConstraints.focusMode","focusMode")}}
- A {{jsxref("String")}} specifying one of
"none"
, "manual"
, "sigle-shot"
, or "continuous"
.
- {{domxref("MediaTrackConstraints.pointsOfInterest","pointsOfInterest")}}
- The pixel coordinates on the sensor of one or more points of interest. This is either an object in the form { x:value, y:value } or an array of such objects, where value is a double-precision integer.
- {{domxref("MediaTrackConstraints.expsureCompensation","exposureCompensation")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying f-stop adjustment by up to ±3.
- {{domxref("MediaTrackConstraints.colorTemperature","colorTemperature")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying a desired color temperature in degrees kelvin.
- {{domxref("MediaTrackConstraints.iso","iso")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying a desired iso setting.
- {{domxref("MediaTrackConstraints.brightness","brightness")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying a desired brightness setting.
- {{domxref("MediaTrackConstraints.contrast","contrast")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying the degree of difference between light and dark.
- {{domxref("MediaTrackConstraints.saturation","saturation")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying the degree of color intensity.
- {{domxref("MediaTrackConstraints.sharpness","sharpness")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying the intensity of edges.
- {{domxref("MediaTrackConstraints.focusDistance","focusDistance")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying distance to a focused object.
- {{domxref("MediaTrackConstraints.zoom","zoom")}}
- A {{domxref("ConstrainDouble")}} (a double-precision integer) specifying the desired focal length.
- {{domxref("MediaTrackConstraints.torch","torch")}}
- A {{jsxref("Boolean")}} whter the fill light continuously connected, meaning it stays on as long as the track is active.
Properties of video tracks
- {{domxref("MediaTrackConstraints.aspectRatio", "aspectRatio")}}
- A {{domxref("ConstrainDouble")}} specifying the video aspect ratio or range of aspect ratios which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.facingMode", "facingMode")}}
- A {{domxref("ConstrainDOMString")}} object specifying a facing or an array of facings which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.frameRate", "frameRate")}}
- A {{domxref("ConstrainDouble")}} specifying the frame rate or range of frame rates which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.height", "height")}}
- A {{domxref("ConstrainLong")}} specifying the video height or range of heights which are acceptable and/or required.
- {{domxref("MediaTrackConstraints.width", "width")}}
- A {{domxref("ConstrainLong")}} specifying the video width or range of widths which are acceptable and/or required.
Specifications
Specification |
Status |
Comment |
{{SpecName('Media Capture', '#dom-mediatrackconstraints', 'applyConstraints()')}} |
{{Spec2('Media Capture')}} |
Initial definition. |
{{SpecName('MediaStream Image', '#mediatrackconstraintset-section','applyConstraints()')}} |
{{Spec2('MediaStream Image')}} |
Adds image constraints. |
Browser compatibility
{{ CompatibilityTable }}
Feature |
Chrome |
Firefox (Gecko) |
Internet Explorer |
Opera |
Safari |
Basic support |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOpera(46)}} |
{{ CompatUnknown }} |
deviceId |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOpera(46)}} |
{{ CompatUnknown }} |
groupId |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOpera(46)}} |
{{ CompatUnknown }} |
Audio track properties |
{{CompatNo}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatNo}} |
{{ CompatUnknown }} |
Image track properties |
{{CompatChrome(63)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOpera(50)}} |
{{ CompatUnknown }} |
Video track properties |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOpera(46)}} |
{{ CompatUnknown }} |
Feature |
Android Webview |
Chrome for Android |
Firefox Mobile (Gecko) |
IE Mobile |
Opera Mobile |
Safari Mobile |
Basic support |
{{CompatChrome(59)}} |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOperaMobile(46)}} |
{{ CompatUnknown }} |
deviceId |
{{CompatChrome(59)}} |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOperaMobile(46)}} |
{{ CompatUnknown }} |
groupId |
{{CompatChrome(59)}} |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOperaMobile(46)}} |
{{ CompatUnknown }} |
Audio track properties |
{{CompatNo}} |
{{CompatNo}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatNo}} |
{{ CompatUnknown }} |
Image track properties |
{{CompatChrome(63)}} |
{{CompatChrome(63)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOperaMobile(50)}} |
{{ CompatUnknown }} |
Video track properties |
{{CompatChrome(59)}} |
{{CompatChrome(59)}} |
{{ CompatUnknown }} |
{{ CompatUnknown }} |
{{CompatOperaMobile(46)}} |
{{ CompatUnknown }} |
See also
- {{domxref("MediaDevices.getUserMedia()")}}
- {{domxref("MediaStreamTrack.getConstraints()")}}
- {{domxref("MediaStreamTrack.applyConstraints()")}}
- {{domxref("MediaDevices.getSupportedConstraints()")}}
- {{domxref("MediaTrackSupportedConstraints")}}
- {{domxref("MediaStreamTrack.getSettings()")}}