[][src]Struct rusoto_medialive::AacSettings

pub struct AacSettings {
    pub bitrate: Option<f64>,
    pub coding_mode: Option<String>,
    pub input_type: Option<String>,
    pub profile: Option<String>,
    pub rate_control_mode: Option<String>,
    pub raw_format: Option<String>,
    pub sample_rate: Option<f64>,
    pub spec: Option<String>,
    pub vbr_quality: Option<String>,
}

Aac Settings

Fields

bitrate: Option<f64>

Average bitrate in bits/second. Valid values depend on rate control mode and profile.

coding_mode: Option<String>

Mono, Stereo, or 5.1 channel layout. Valid values depend on rate control mode and profile. The adReceiverMix setting receives a stereo description plus control track and emits a mono AAC encode of the description track, with control data emitted in the PES header as per ETSI TS 101 154 Annex E.

input_type: Option<String>

Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair. The Audio Type field (audioType) will be set to 3, which signals to downstream systems that this stream contains "broadcaster mixed AD". Note that the input received by the encoder must contain pre-mixed audio; the encoder does not perform the mixing. The values in audioTypeControl and audioType (in AudioDescription) are ignored when set to broadcasterMixedAd.

Leave set to "normal" when input does not contain pre-mixed audio + AD.

profile: Option<String>

AAC Profile.

rate_control_mode: Option<String>

Rate Control Mode.

raw_format: Option<String>

Sets LATM / LOAS AAC output for raw containers.

sample_rate: Option<f64>

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

spec: Option<String>

Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.

vbr_quality: Option<String>

VBR Quality Level - Only used if rateControlMode is VBR.

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 Serialize for AacSettings[src]

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

Auto Trait Implementations

impl Send for AacSettings

impl Sync for AacSettings

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