PlayerUpdatedInfo

Information related to the media player.

class PlayerUpdatedInfo {
  const PlayerUpdatedInfo({this.playerId, this.deviceId});

  @JsonKey(name: 'playerId')
  final String? playerId;
  @JsonKey(name: 'deviceId')
  final String? deviceId;
  factory PlayerUpdatedInfo.fromJson(Map<String, dynamic> json) =>
      _$PlayerUpdatedInfoFromJson(json);
  Map<String, dynamic> toJson() => _$PlayerUpdatedInfoToJson(this);
}

Properties

deviceId
Device ID, identifies a device.
videoHeight
Video height (pixel).
videoWidth
Video width (pixel).
audioSampleRate
Audio sample rate (Hz).
audioChannels
Number of audio channels.
audioBitsPerSample
Number of bits per audio sample (bit).