The RTCVideoSourceStats
dictionary of the WebRTC API provides statistics information about a video track (MediaStreamTrack
) that is attached to one or more senders (RTCRtpSender
).
These statistics can be obtained by iterating the RTCStatsReport
returned by RTCRtpSender.getStats()
or RTCPeerConnection.getStats()
until you find a report with the type
of media-source
and a kind
of video
.
Instance properties
-
frames
Optional
-
A positive number that indicates the total number of frames originating from this video source.
-
framesPerSecond
Optional
-
A positive number that represents the number of frames originating from this video source in the last second. This property is not defined on this stats object for the first second of its existence.
-
height
Optional
-
A number that represents the height, in pixels, of the last frame originating from this source. This property is not defined on this stats object until after the first frame has been produced.
-
width
Optional
-
A number that represents the width, in pixels, of the most recent frame originating from this source. This property is not defined on this stats object until after the first frame has been produced.
The following properties are present in both RTCVideoSourceStats
and RTCAudioSourceStats
:
trackIdentifier
-
A string that contains the id
value of the MediaStreamTrack
associated with the video source.
kind
-
A string indicating whether this object represents stats for a video source or a media source. For an RTCVideoSourceStats
this will always be video
.
Common instance properties
The following properties are common to all statistics objects.
id
-
A string that uniquely identifies the object that is being monitored to produce this set of statistics.
timestamp
-
A DOMHighResTimeStamp
object indicating the time at which the sample was taken for this statistics object.
type
-
A string with the value "media-source"
, indicating that the object is an instance of either RTCAudioSourceStats
or RTCVideoSourceStats
.
Description
The interface provides statistics about a video media source attached to one or more senders. The information includes a identifier for the associated MediaStreamTrack
, along with the height and width of the last frame sent from the source, the number of frames sent from the source, and the frame rate.
Examples
This example shows how you might iterate the stats object returned from RTCRtpSender.getStats()
to get the video-specific media-source stats.
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;
const fps = videoSourceStats?.framesPerSecond;
const width = videoSourceStats?.width;
const height = videoSourceStats?.height;
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Opera |
Safari |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
WebView Android |
RTCVideoSourceStats |
80 |
80 |
113 |
67 |
14.1 |
80 |
113 |
57 |
14.5 |
13.0 |
80 |
audioLevel |
80 |
80 |
No |
67 |
No |
80 |
No |
57 |
No |
13.0 |
80 |
frames |
90 |
90 |
116 |
76 |
No |
90 |
116 |
64 |
No |
15.0 |
90 |
framesPerSecond |
80 |
80 |
116 |
67 |
No |
80 |
116 |
57 |
No |
13.0 |
80 |
height |
80 |
80 |
116 |
67 |
No |
80 |
116 |
57 |
No |
13.0 |
80 |
id |
80 |
80 |
113 |
67 |
14.1 |
80 |
113 |
57 |
14.5 |
13.0 |
80 |
kind |
80 |
80 |
113 |
67 |
14.1 |
80 |
113 |
57 |
14.5 |
13.0 |
80 |
timestamp |
80 |
80 |
113 |
67 |
14.1 |
80 |
113 |
57 |
14.5 |
13.0 |
80 |
totalAudioEnergy |
80 |
80 |
No |
67 |
No |
80 |
No |
57 |
No |
13.0 |
80 |
totalSamplesDuration |
80 |
80 |
No |
67 |
No |
80 |
No |
57 |
No |
13.0 |
80 |
trackIdentifier |
80 |
80 |
113 |
67 |
14.1 |
80 |
113 |
57 |
14.5 |
13.0 |
80 |
type |
80 |
80 |
113 |
67 |
14.1 |
80 |
113 |
57 |
14.5 |
13.0 |
80 |
width |
80 |
80 |
116 |
67 |
No |
80 |
116 |
57 |
No |
13.0 |
80 |