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);
}
Attributes
- deviceId
- The ID of a deivce.
- videoHeight
- Height (pixel) of the video.
- videoWidth
- Width (pixel) of the video.
- audioSampleRate
- Audio sample rate (Hz).
- audioChannels
- The number of audio channels.
- audioBitsPerSample
- The number of bits per audio sample point.