AudioQuality

data class AudioQuality(val id: String, val label: String?, val bitrate: Int, val codec: String?) : Quality

Represents an audio quality.

Constructors

Link copied to clipboard
constructor(id: String, label: String?, bitrate: Int, codec: String?)

Properties

Link copied to clipboard
open override val bitrate: Int

The bitrate of the media quality.

Link copied to clipboard
open override val codec: String?

The codec of the media quality.

Link copied to clipboard
open override val id: String

The id of the media quality.

Link copied to clipboard
open override val label: String?

The label of the media quality that should be exposed to the user.