RTCVideoSourceStats: width-Eigenschaft
Die width
-Eigenschaft des RTCVideoSourceStats
Wörterbuchs gibt die Breite, in Pixel, des letzten Bildes an, das von dieser Quelle stammt.
Diese Eigenschaft wird erst am Statistikobjekt definiert, nachdem das erste Bild produziert wurde.
Wert
Eine positive Zahl, die die Breite in Pixel angibt.
Beispiele
Dieses Beispiel zeigt, wie Sie das Statistikobjekt, das von RTCRtpSender.getStats()
zurückgegeben wird, durchlaufen können, um die Videodatenquellenstatistiken zu erhalten und dann die width
zu extrahieren.
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;
Spezifikationen
Specification |
---|
Identifiers for WebRTC's Statistics API # dom-rtcvideosourcestats-width |
Browser-Kompatibilität
BCD tables only load in the browser