[][src]Struct rusoto_mediaconvert::AacSettings

pub struct AacSettings {
    pub audio_description_broadcaster_mix: Option<String>,
    pub bitrate: Option<i64>,
    pub codec_profile: Option<String>,
    pub coding_mode: Option<String>,
    pub rate_control_mode: Option<String>,
    pub raw_format: Option<String>,
    pub sample_rate: Option<i64>,
    pub specification: Option<String>,
    pub vbr_quality: Option<String>,
}

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.

Fields

audio_description_broadcaster_mix: Option<String>bitrate: Option<i64>

Average bitrate in bits/second. The set of valid values for this setting is: 6000, 8000, 10000, 12000, 14000, 16000, 20000, 24000, 28000, 32000, 40000, 48000, 56000, 64000, 80000, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 288000, 320000, 384000, 448000, 512000, 576000, 640000, 768000, 896000, 1024000. The value you set is also constrained by the values you choose for Profile (codecProfile), Bitrate control mode (codingMode), and Sample rate (sampleRate). Default values depend on Bitrate control mode and Profile.

codec_profile: Option<String>coding_mode: Option<String>rate_control_mode: Option<String>raw_format: Option<String>sample_rate: Option<i64>

Sample rate in Hz. Valid values depend on rate control mode and profile.

specification: Option<String>vbr_quality: Option<String>

Trait Implementations

impl PartialEq<AacSettings> for AacSettings[src]

impl Default for AacSettings[src]

impl Clone for AacSettings[src]

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

Performs copy-assignment from source. Read more

impl Debug for AacSettings[src]

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

impl Serialize for AacSettings[src]

Auto Trait Implementations

impl Send for AacSettings

impl Sync for AacSettings

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

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