[][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>,
}

Placeholder documentation for AacSettings

Fields

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

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.

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.

AAC Profile.

Rate Control Mode.

Sets LATM / LOAS AAC output for raw containers.

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

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

VBR Quality Level - Only used if rateControlMode is VBR.

Trait Implementations

impl Clone for AacSettings
[src]

Performs copy-assignment from source. Read more

impl Default for AacSettings
[src]

impl PartialEq<AacSettings> for AacSettings
[src]

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

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

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

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

🔬 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]

🔬 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> Same for T

Should always be Self

impl<T> Erased for T