InboundVideoStats
Class that represents statistics for an incoming IRemoteVideoStream. Available in EndpointStats.
Props
bytesReceived
public long
bytesReceivedTotal number of bytes received within the video stream.
Returns
type:
long
codec
public String
codecVideo codec name for the video stream, e.g. "VP8".
Returns
type:
String
fps
public int
fpsNumber of complete frames in the last second
Returns
type:
int
frameHeight
public int
frameHeightVideo frame height received within the video stream at the moment the statistics are collected.
Returns
type:
int
frameWidth
public int
frameWidthVideo frame width received within the video stream at the moment the statistics are collected.
Returns
type:
int
jitterBufferMs
public int
jitterBufferMsTemporary storage buffer used to capture incoming data packets. Use it to ensure the continuity of streams by smoothing out packet arrival times during periods of network congestion. Measured in milliseconds.
Returns
type:
int
loss
public double
lossPacket loss in the video stream. Values are in the range 0..1, where 0 means no loss and 1 means full loss.
Returns
type:
double
packetsLost
public int
packetsLostTotal number of video packets lost for the video stream.
Returns
type:
int
packetsReceived
public long
packetsReceivedTotal number of packets received within the video stream.
Returns
type:
long
timestamp
public double
timestampTime at which the call statistics are collected (in UNIX timestamp format).
Returns
type:
double