Limited availability
The height
property of the RTCVideoSourceStats
dictionary indicates the height, in pixels, of the last frame originating from this source.
This property is not defined on the stats object until after the first frame has been produced.
ValueA positive number indicating the height, in pixels.
ExamplesThis example shows how you might iterate the stats object returned from RTCRtpSender.getStats()
to get the video source stats, and then extract the height
.
// 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?.height;
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4