PlayerPlaybackStats

Information about the currently playing media resource.

export class PlayerPlaybackStats {
  videoFps?: number;
  videoBitrateInKbps?: number;
  audioBitrateInKbps?: number;
  totalBitrateInKbps?: number;
}

Properties

videoFps
Video frame rate, in fps.
videoBitrateInKbps
Video bitrate, in kbps.
audioBitrateInKbps
Audio bitrate, in kbps.
totalBitrateInKbps
Total bitrate of the media stream, in kbps.