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

impl Debug for AacSettings[src]

impl Default for AacSettings[src]

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

impl PartialEq<AacSettings> for AacSettings[src]

impl Serialize for AacSettings[src]

impl StructuralPartialEq for AacSettings[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.