[][src]Struct rusoto_mediaconvert::AudioCodecSettings

pub struct AudioCodecSettings {
    pub aac_settings: Option<AacSettings>,
    pub ac_3_settings: Option<Ac3Settings>,
    pub aiff_settings: Option<AiffSettings>,
    pub codec: Option<String>,
    pub eac_3_atmos_settings: Option<Eac3AtmosSettings>,
    pub eac_3_settings: Option<Eac3Settings>,
    pub mp_2_settings: Option<Mp2Settings>,
    pub wav_settings: Option<WavSettings>,
}

Audio codec settings (CodecSettings) under (AudioDescriptions) contains the group of settings related to audio encoding. The settings in this group vary depending on the value that you choose for Audio codec (Codec). For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * AAC, AacSettings * MP2, Mp2Settings * WAV, WavSettings * AIFF, AiffSettings * AC3, Ac3Settings * EAC3, Eac3Settings * EAC3_ATMOS, Eac3AtmosSettings

Fields

aac_settings: Option<AacSettings>

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AAC. The service accepts one of two mutually exclusive groups of AAC settings--VBR and CBR. To select one of these modes, set the value of Bitrate control mode (rateControlMode) to "VBR" or "CBR". In VBR mode, you control the audio quality with the setting VBR quality (vbrQuality). In CBR mode, you use the setting Bitrate (bitrate). Defaults and valid values depend on the rate control mode.

ac_3_settings: Option<Ac3Settings>

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AC3.

aiff_settings: Option<AiffSettings>

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AIFF.

codec: Option<String>

Type of Audio codec.

eac_3_atmos_settings: Option<Eac3AtmosSettings>

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value EAC3_ATMOS.

eac_3_settings: Option<Eac3Settings>

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value EAC3.

mp_2_settings: Option<Mp2Settings>

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value MP2.

wav_settings: Option<WavSettings>

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value WAV.

Trait Implementations

impl Clone for AudioCodecSettings[src]

impl Default for AudioCodecSettings[src]

impl PartialEq<AudioCodecSettings> for AudioCodecSettings[src]

impl Debug for AudioCodecSettings[src]

impl Serialize for AudioCodecSettings[src]

impl<'de> Deserialize<'de> for AudioCodecSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self