RTCVideoSourceStats: frames 属性
RTCVideoSourceStats 字典中的 frames 属性表示此视频源在其生命周期内产生的总帧数。
值
一个指示此源产生的总帧数的数字。
示例
此示例展示了如何迭代 RTCRtpSender.getStats() 返回的 stats 对象以获取视频源统计信息,然后提取 frames。
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;
}
});
const frames = videoSourceStats?.frames;
规范
| 规范 |
|---|
| WebRTC 统计 API 的标识符 # dom-rtcvideosourcestats-frames |
浏览器兼容性
加载中…