MSVideoPayload Dictionary object
[Some information relates to pre-released product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.]
Contains information about video-based payload metrics. It is described in [MS-QoE] Section 2.2.1.28 (Signal).
Syntax
dictionary MSVideoPayload : MSPayloadBase {
DOMString resolution;
unsigned long videoBitRateAvg;
unsigned long videoBitRateMax;
float videoFrameRateAvg;
float videoPacketLossRate;
float durationSeconds;
};
Standards information
MSVideoPayload Dictionary
Member | Type | Description |
---|---|---|
durationSeconds | float | The received video aggregated total duration in seconds. Defined in [MS-QoE] on page 128. |
resolution | DOMString | Report video resolution in pixels, in the string format of Width x Height without spaces, for example "640x480". |
videoBitRateAvg | unsigned long | Average bit rate, or bits per second, sent or received for a video stream, computed over the duration of the session. This includes raw video and transport bits. |
videoBitRateMax | unsigned long | Maximum bit rate, or bits per second, sent or received for a video stream, computed over the duration of the session. |
videoFrameRateAvg | float | Average frames per second sent or received for a video stream, computed over the duration of the session. |
videoPacketLossRate | float | The average fraction lost, as specified in [RFC3550] Section 6.4.1, computed over the duration fo the session. |