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 |
浏览器兼容性
加载中…