AacAudioArgs

data class AacAudioArgs(val bitrate: Output<Int>? = null, val channels: Output<Int>? = null, val label: Output<String>? = null, val odataType: Output<String>, val profile: Output<Either<String, AacAudioProfile>>? = null, val samplingRate: Output<Int>? = null) : ConvertibleToJava<AacAudioArgs>

Describes Advanced Audio Codec (AAC) audio encoding settings.

Constructors

Link copied to clipboard
constructor(bitrate: Output<Int>? = null, channels: Output<Int>? = null, label: Output<String>? = null, odataType: Output<String>, profile: Output<Either<String, AacAudioProfile>>? = null, samplingRate: Output<Int>? = null)

Properties

Link copied to clipboard
val bitrate: Output<Int>? = null

The bitrate, in bits per second, of the output encoded audio.

Link copied to clipboard
val channels: Output<Int>? = null

The number of channels in the audio.

Link copied to clipboard
val label: Output<String>? = null

An optional label for the codec. The label can be used to control muxing behavior.

Link copied to clipboard
val odataType: Output<String>

The discriminator for derived types. Expected value is '#Microsoft.Media.AacAudio'.

Link copied to clipboard
val profile: Output<Either<String, AacAudioProfile>>? = null

The encoding profile to be used when encoding audio with AAC.

Link copied to clipboard
val samplingRate: Output<Int>? = null

The sampling rate to use for encoding in hertz.

Functions

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