PresetAudioArgs

data class PresetAudioArgs(val audioPackingMode: Output<String>? = null, val bitRate: Output<String>? = null, val channels: Output<String>? = null, val codec: Output<String>? = null, val sampleRate: Output<String>? = null) : ConvertibleToJava<PresetAudioArgs>

Constructors

Link copied to clipboard
constructor(audioPackingMode: Output<String>? = null, bitRate: Output<String>? = null, channels: Output<String>? = null, codec: Output<String>? = null, sampleRate: Output<String>? = null)

Properties

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

The method of organizing audio channels and tracks. Use Audio:Channels to specify the number of channels in your output, and Audio:AudioPackingMode to specify the number of tracks and their relation to the channels. If you do not specify an Audio:AudioPackingMode, Elastic Transcoder uses SingleTrack.

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

The bit rate of the audio stream in the output file, in kilobits/second. Enter an integer between 64 and 320, inclusive.

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

The number of audio channels in the output file

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

The audio codec for the output file. Valid values are AAC, flac, mp2, mp3, pcm, and vorbis.

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

The sample rate of the audio stream in the output file, in hertz. Valid values are: auto, 22050, 32000, 44100, 48000, 96000

Functions

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