
com.pulumi.googlenative.transcoder.v1.kotlin.inputs.AudioArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.transcoder.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.transcoder.v1.inputs.AudioArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Double
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Audio preprocessing configuration.
* @property highBoost Enable boosting high frequency components. The default is `false`. **Note:** This field is not supported.
* @property lowBoost Enable boosting low frequency components. The default is `false`. **Note:** This field is not supported.
* @property lufs 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
*/
public data class AudioArgs(
public val highBoost: Output? = null,
public val lowBoost: Output? = null,
public val lufs: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.transcoder.v1.inputs.AudioArgs =
com.pulumi.googlenative.transcoder.v1.inputs.AudioArgs.builder()
.highBoost(highBoost?.applyValue({ args0 -> args0 }))
.lowBoost(lowBoost?.applyValue({ args0 -> args0 }))
.lufs(lufs?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AudioArgs].
*/
@PulumiTagMarker
public class AudioArgsBuilder internal constructor() {
private var highBoost: Output? = null
private var lowBoost: Output? = null
private var lufs: Output? = null
/**
* @param value Enable boosting high frequency components. The default is `false`. **Note:** This field is not supported.
*/
@JvmName("perovxsegxxjifei")
public suspend fun highBoost(`value`: Output) {
this.highBoost = value
}
/**
* @param value Enable boosting low frequency components. The default is `false`. **Note:** This field is not supported.
*/
@JvmName("osqlbvlgyauqgisk")
public suspend fun lowBoost(`value`: Output) {
this.lowBoost = value
}
/**
* @param value 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
*/
@JvmName("xhwuihphoofmldsh")
public suspend fun lufs(`value`: Output) {
this.lufs = value
}
/**
* @param value Enable boosting high frequency components. The default is `false`. **Note:** This field is not supported.
*/
@JvmName("bqrbnproafqemofh")
public suspend fun highBoost(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.highBoost = mapped
}
/**
* @param value Enable boosting low frequency components. The default is `false`. **Note:** This field is not supported.
*/
@JvmName("vkbpipnsboljafvu")
public suspend fun lowBoost(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lowBoost = mapped
}
/**
* @param value 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
*/
@JvmName("bveaaknawpcxxesr")
public suspend fun lufs(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lufs = mapped
}
internal fun build(): AudioArgs = AudioArgs(
highBoost = highBoost,
lowBoost = lowBoost,
lufs = lufs,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy