[][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_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 you choose for Audio codec (Codec). For each codec enum 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

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_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 PartialEq<AudioCodecSettings> for AudioCodecSettings[src]

impl Default for AudioCodecSettings[src]

impl Clone for AudioCodecSettings[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AudioCodecSettings[src]

impl Serialize for AudioCodecSettings[src]

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

Auto Trait Implementations

impl Send for AudioCodecSettings

impl Sync for AudioCodecSettings

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self