CanvasCaptureMediaStreamTrack: canvas-Eigenschaft
Die schreibgeschützte canvas
-Eigenschaft der CanvasCaptureMediaStreamTrack
-Schnittstelle gibt das HTMLCanvasElement
zurück, von dem die Frames erfasst werden.
Wert
Ein HTMLCanvasElement
, das die Quelle der erfassten Frames angibt.
Beispiel
js
// Find the canvas element to capture
const canvasElt = document.querySelector("canvas");
// Get the stream
const stream = canvasElt.captureStream(25); // 25 FPS
// Do things to the stream
// …
// Obtain the canvas associated with the stream
const canvas = stream.canvas;
Spezifikationen
Specification |
---|
Media Capture from DOM Elements # dom-canvascapturemediastreamtrack-canvas |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
HTMLCanvasElement.captureStream()
um einen Stream zu erstellen, der ein bestimmtes Canvas-Element erfasst.<canvas>