Firefox Tomorrow

web api instance property

RTCVideoSourceStats: width property

View on MDN ↗

The width property of the RTCVideoSourceStats dictionary indicates the width, in pixels, of the last frame originating from this source.

This property is not defined on the stats object until after the first frame has been produced.

Value

A positive number indicating the width, in pixels.

Examples

This example shows how you might iterate the stats object returned from RTCRtpSender.getStats() to get the video source stats, and then extract the width.

// where sender is an RTCRtpSender
const stats = await sender.getStats();
let videoSourceStats = null;

stats.forEach((report) => {
  if (report.type === "media-source" && report.kind==="video") {
    videoSourceStats = report;
    break;
  }
});

// Note, test is conditional in case the stats object
// does not include video source stats
const height = videoSourceStats?.width;

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.