AudioArgs

data class AudioArgs(val highBoost: Output<Boolean>? = null, val lowBoost: Output<Boolean>? = null, val lufs: Output<Double>? = null) : ConvertibleToJava<AudioArgs>

Audio preprocessing configuration.

Constructors

Link copied to clipboard
constructor(highBoost: Output<Boolean>? = null, lowBoost: Output<Boolean>? = null, lufs: Output<Double>? = null)

Properties

Link copied to clipboard
val highBoost: Output<Boolean>? = null

Enable boosting high frequency components. The default is false. Note: This field is not supported.

Link copied to clipboard
val lowBoost: Output<Boolean>? = null

Enable boosting low frequency components. The default is false. Note: This field is not supported.

Link copied to clipboard
val lufs: Output<Double>? = null

Specify audio loudness normalization in loudness units relative to full scale (LUFS). Enter a value between -24 and 0 (the default), where: * -24 is the Advanced Television Systems Committee (ATSC A/85) standard * -23 is the EU R128 broadcast standard * -19 is the prior standard for online mono audio * -18 is the ReplayGain standard * -16 is the prior standard for stereo audio * -14 is the new online audio standard recommended by Spotify, as well as Amazon Echo * 0 disables normalization

Functions

Link copied to clipboard
open override fun toJava(): AudioArgs