RTCVideoSourceStats: width 属性
width
属性是 RTCVideoSourceStats
字典中的一个属性,它表示来自此源的最后一帧的宽度(以像素为单位)。
在生成第一帧之前,此属性在统计对象中未定义。
值
表示宽度(以像素为单位)的正数。
示例
此示例显示了如何迭代从 RTCRtpSender.getStats()
返回的统计对象以获取视频源统计信息,然后提取 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 |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。