RTCVideoSourceStats: height 属性

height 属性是 RTCVideoSourceStats 字典的一个属性,它表示来自该源的最后一帧的高度(以像素为单位)。

在生成第一帧之前,此属性不会在统计信息对象上定义。

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

示例

此示例展示了如何迭代从 RTCRtpSender.getStats() 返回的统计信息对象,获取视频源统计信息,然后提取 height

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?.height;

规范

规范
WebRTC 统计信息 API 的标识符
# dom-rtcvideosourcestats-height

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。