DirectCdnStreamingStats

Statistics of the current CDN streaming.

class DirectCdnStreamingStats {
  const DirectCdnStreamingStats(
      {this.videoWidth,
      this.videoHeight,
      this.fps,
      this.videoBitrate,
      this.audioBitrate});

  @JsonKey(name: 'videoWidth')
  final int? videoWidth;

  @JsonKey(name: 'videoHeight')
  final int? videoHeight;

  @JsonKey(name: 'fps')
  final int? fps;

  @JsonKey(name: 'videoBitrate')
  final int? videoBitrate;

  @JsonKey(name: 'audioBitrate')
  final int? audioBitrate;

  factory DirectCdnStreamingStats.fromJson(Map<String, dynamic> json) =>
      _$DirectCdnStreamingStatsFromJson(json);

  Map<String, dynamic> toJson() => _$DirectCdnStreamingStatsToJson(this);
}
Deprecated
Deprecated since v4.6.2.

Properties

videoWidth
Width of the video (px).
videoHeight
Height of the video (px).
fps
Current video frame rate (fps).
videoBitrate
Current video bitrate (bps).
audioBitrate
Current audio bitrate (bps).