PresetAudioCodecOptionsArgs

data class PresetAudioCodecOptionsArgs(val bitDepth: Output<String>? = null, val bitOrder: Output<String>? = null, val profile: Output<String>? = null, val signed: Output<String>? = null) : ConvertibleToJava<PresetAudioCodecOptionsArgs>

Constructors

Link copied to clipboard
fun PresetAudioCodecOptionsArgs(bitDepth: Output<String>? = null, bitOrder: Output<String>? = null, profile: Output<String>? = null, signed: Output<String>? = null)

Functions

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

Properties

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

The bit depth of a sample is how many bits of information are included in the audio samples. Valid values are 16 and 24. (FLAC/PCM Only)

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

The order the bits of a PCM sample are stored in. The supported value is LittleEndian. (PCM Only)

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

If you specified AAC for Audio:Codec, choose the AAC profile for the output file.

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

Whether audio samples are represented with negative and positive numbers (signed) or only positive numbers (unsigned). The supported value is Signed. (PCM Only)