[][src]Struct rusoto_medialive::AudioDescription

pub struct AudioDescription {
    pub audio_normalization_settings: Option<AudioNormalizationSettings>,
    pub audio_selector_name: String,
    pub audio_type: Option<String>,
    pub audio_type_control: Option<String>,
    pub codec_settings: Option<AudioCodecSettings>,
    pub language_code: Option<String>,
    pub language_code_control: Option<String>,
    pub name: String,
    pub remix_settings: Option<RemixSettings>,
    pub stream_name: Option<String>,
}

Placeholder documentation for AudioDescription

Fields

Advanced audio normalization settings.

The name of the AudioSelector used as the source for this AudioDescription.

Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.

Determines how audio type is determined. followInput: If the input contains an ISO 639 audioType, then that value is passed through to the output. If the input contains no ISO 639 audioType, the value in Audio Type is included in the output. useConfigured: The value in Audio Type is included in the output. Note that this field and audioType are both ignored if inputType is broadcasterMixedAd.

Audio codec settings.

Indicates the language of the audio output track. Only used if languageControlMode is useConfigured, or there is no ISO 639 language code specified in the input.

Choosing followInput will cause the ISO 639 language code of the output to follow the ISO 639 language code of the input. The languageCode will be used when useConfigured is set, or when followInput is selected but there is no ISO 639 language code specified by the input.

The name of this AudioDescription. Outputs will use this name to uniquely identify this AudioDescription. Description names should be unique within this Live Event.

Settings that control how input audio channels are remixed into the output audio channels.

Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by the player (eg. English, or Director Commentary).

Trait Implementations

impl Clone for AudioDescription
[src]

Performs copy-assignment from source. Read more

impl Default for AudioDescription
[src]

impl PartialEq<AudioDescription> for AudioDescription
[src]

impl Debug for AudioDescription
[src]

impl Serialize for AudioDescription
[src]

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

Auto Trait Implementations

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, 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> BorrowMut 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 for T

Should always be Self

impl<T> Erased for T