MediaStream Image Capture API - Web APIs 编辑
Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The MediaStream Image Capture API is an API for capturing images or videos from a photographic device. In addition to capturing data, it also allows you to retrieve information about device capabilities such as image size, red-eye reduction and whether or not there is a flash and what they are currently set to. Conversely, the API allows the capabilities to be configured within the constraints what the device allows.
MediaStream image capture concepts and usage
The process of retrieving an image or video stream happens as described below. The example code is adapted from Chrome's Image Capture examples.
First, get a reference to a device by calling MediaDevices.getUserMedia()
. The example below says give me whatever video device is available, though the getUserMedia()
method allows more specific capabilities to be requested. This method returns a Promise
that resolves with a MediaStream
object.
navigator.mediaDevices.getUserMedia({ video: true })
.then(mediaStream => {
// Do something with the stream.
})
Next, isolate the visual part of the media stream. Do this by calling MediaStream.getVideoTracks()
. This returns an array of MediaStreamTrack
objects. The code below assumes that the first item in the MediaStreamTrack
array is the one to use. You can use the properties of the MediaStreamTrack
objects to select the one you need.
const track = mediaStream.getVideoTracks()[0];
At this point, you might want to configure the device capabilities before capturing an image. You can do this by calling applyConstraints()
on the track object before doing anything else.
let zoom = document.querySelector('#zoom');
const capabilities = track.getCapabilities();
// Check whether zoom is supported or not.
if(!capabilities.zoom) {
return;
}
track.applyConstraints({ advanced : [{ zoom: zoom.value }] });
Finally, pass the MediaStreamTrack
object to the ImageCapture()
constructor. Though a MediaStream
holds several types of tracks and provides multiple methods for retrieving them, the ImageCapture constructor will throw a DOMException
of type NotSupportedError
if MediaStreamTrack.kind
is not "video"
.
let imageCapture = new ImageCapture(track);
Interfaces
ImageCapture
- An interface for capturing images from a photographic device referenced through a valid
MediaStreamTrack
. PhotoCapabilities
- Provides available configuration options for an attached photographic device. Retrieve a
PhotoCapabilities
object by callingImageCapture.getPhotoCapabilities()
.
Specifications
Specification | Status | Comment |
---|---|---|
MediaStream Image Capture | Working Draft | Initial definition. |
Browser compatibility
ImageCapture
BCD tables only load in the browser
PhotoCapabilities
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论