[][src]Struct rusoto_mediaconvert::AudioNormalizationSettings

pub struct AudioNormalizationSettings {
    pub algorithm: Option<String>,
    pub algorithm_control: Option<String>,
    pub correction_gate_level: Option<i64>,
    pub loudness_logging: Option<String>,
    pub peak_calculation: Option<String>,
    pub target_lkfs: Option<f64>,
}

Advanced audio normalization settings. Ignore these settings unless you need to comply with a loudness standard.

Fields

algorithm: Option<String>

Choose one of the following audio normalization algorithms: ITU-R BS.1770-1: Ungated loudness. A measurement of ungated average loudness for an entire piece of content, suitable for measurement of short-form content under ATSC recommendation A/85. Supports up to 5.1 audio channels. ITU-R BS.1770-2: Gated loudness. A measurement of gated average loudness compliant with the requirements of EBU-R128. Supports up to 5.1 audio channels. ITU-R BS.1770-3: Modified peak. The same loudness measurement algorithm as 1770-2, with an updated true peak measurement. ITU-R BS.1770-4: Higher channel count. Allows for more audio channels than the other algorithms, including configurations such as 7.1.

algorithm_control: Option<String>

When enabled the output audio is corrected using the chosen algorithm. If disabled, the audio will be measured but not adjusted.

correction_gate_level: Option<i64>

Content measuring above this level will be corrected to the target level. Content measuring below this level will not be corrected. Gating only applies when not using realtimecorrection.

loudness_logging: Option<String>

If set to LOG, log each output's audio track loudness to a CSV file.

peak_calculation: Option<String>

If set to TRUE_PEAK, calculate and log the TruePeak for each output's audio track loudness.

target_lkfs: Option<f64>

When you use Audio normalization (AudioNormalizationSettings), optionally use this setting to specify a target loudness. If you don't specify a value here, the encoder chooses a value for you, based on the algorithm that you choose for Algorithm (algorithm). If you choose algorithm 1770-1, the encoder will choose -24 LKFS; otherwise, the encoder will choose -23 LKFS.

Trait Implementations

impl Clone for AudioNormalizationSettings[src]

impl Default for AudioNormalizationSettings[src]

impl PartialEq<AudioNormalizationSettings> for AudioNormalizationSettings[src]

impl Debug for AudioNormalizationSettings[src]

impl Serialize for AudioNormalizationSettings[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self