VideoFrame: visibleRect property

Note: This feature is available in Dedicated Web Workers.

The visibleRect property of the VideoFrame interface returns a DOMRectReadOnly describing the visible rectangle of pixels for this VideoFrame.

Value

A DOMRectReadOnly.

Examples

The following example prints the visibleRect to the console.

js
console.log(VideoFrame.visibleRect);

Specifications