Equalizer

@Serializable
data class Equalizer(val band: Int, val gain: Float)

There are 15 equalizers (0-14) that can be changed.

Constructors

Link copied to clipboard
constructor(band: Int, gain: Float)

Properties

Link copied to clipboard
val band: Int

the number of the band

Link copied to clipboard
val gain: Float

is the multiplier for the given band. The default value is 0. Valid values range from -0.25 to 1.0, where -0.25 means the given band is completely muted, and 0.25 means it is doubled. Modifying the gain could also change the volume of the output.