PresetAudioCodecOptions

data class PresetAudioCodecOptions(val bitDepth: String? = null, val bitOrder: String? = null, val profile: String? = null, val signed: String? = null)

Constructors

Link copied to clipboard
constructor(bitDepth: String? = null, bitOrder: String? = null, profile: String? = null, signed: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val bitDepth: 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: 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: String? = null

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

Link copied to clipboard
val signed: 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)