RTCVideoSourceStats: width property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Thuộc tính width của từ điển RTCVideoSourceStats cho biết chiều rộng, tính bằng pixel, của khung hình cuối cùng xuất phát từ nguồn này.
Thuộc tính này không được định nghĩa trên đối tượng thống kê cho đến khi khung hình đầu tiên được tạo ra.
Giá trị
Một số dương cho biết chiều rộng, tính bằng pixel.
Ví dụ
Ví dụ này cho thấy cách duyệt qua đối tượng thống kê trả về từ RTCRtpSender.getStats() để lấy thống kê nguồn video, rồi trích xuất width.
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;
Thông số kỹ thuật
| Specification |
|---|
| Identifiers for WebRTC's Statistics API> # dom-rtcvideosourcestats-width> |