PresetAudioCodecOptions constructor
const
PresetAudioCodecOptions({})
Creates a new PresetAudioCodecOptions.
bitDepth 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)
bitOrder The order the bits of a PCM sample are stored in. The supported value is LittleEndian. (PCM Only)
profile If you specified AAC for Audio:Codec, choose the AAC profile for the output file.
signed Whether audio samples are represented with negative and positive numbers (signed) or only positive numbers (unsigned). The supported value is Signed. (PCM Only)
Implementation
const PresetAudioCodecOptions({
this.bitDepth,
this.bitOrder,
this.profile,
this.signed,
});