В https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackConstraints есть раздел "Свойства дорожек изображений". Как настроить эти параметры?
Когда я запускаю navigator.mediaDevices.getSupportedConstraints()
, я получаю следующее:
{
"aspectRatio": true,
"brightness": true,
"channelCount": true,
"colorTemperature": true,
"contrast": true,
"depthFar": true,
"depthNear": true,
"deviceId": true,
"echoCancellation": true,
"exposureCompensation": true,
"exposureMode": true,
"facingMode": true,
"focalLengthX": true,
"focalLengthY": true,
"focusMode": true,
"frameRate": true,
"groupId": true,
"height": true,
"iso": true,
"latency": true,
"pointsOfInterest": true,
"sampleRate": true,
"sampleSize": true,
"saturation": true,
"sharpness": true,
"torch": true,
"videoKind": true,
"volume": true,
"whiteBalanceMode": true,
"width": true,
"zoom": true
}
Я могу настроить "Свойства видеодорожек" под video
navigator.mediaDevices.getUserMedia({
video: {
aspectRatio: 1.5,
width: 1280,
},
})
Но я не уверен, как настроить такие свойства, как focalLengthX
или exposureCompensation
. Где бы я их отрегулировал?