RTCVideoSourceStats: frames property
The frames
property of the RTCVideoSourceStats
dictionary indicates the total number of frames originating from this video source over its lifetime.
Value
A number indicating the total number of frames originating from this source.
Examples
This example shows how you might iterate the stats object returned from RTCRtpSender.getStats()
to get the video source stats, and then extract the 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;
Specifications
Specification |
---|
Identifiers for WebRTC's Statistics API # dom-rtcvideosourcestats-frames |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
frames in 'media-source' stats for video |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.