RTCVideoSourceStats: width 属性

可用性有限

此特性不是基线特性,因为它在一些最广泛使用的浏览器中不起作用。

RTCVideoSourceStats 字典的 width 属性表示来自此源的最后一帧的宽度(以像素为单位)。

在产生第一帧之后,此属性才会在 stats 对象上定义。

一个正数,表示宽度(以像素为单位)。

示例

此示例展示了如何遍历 RTCRtpSender.getStats() 返回的 stats 对象以获取视频源 stats,然后提取 width

js
// 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;

规范

规范
WebRTC 统计 API 的标识符
# dom-rtcvideosourcestats-width

浏览器兼容性