[][src]Struct rusoto_mediaconvert::EmbeddedSourceSettings

pub struct EmbeddedSourceSettings {
    pub convert_608_to_708: Option<String>,
    pub source_608_channel_number: Option<i64>,
    pub source_608_track_number: Option<i64>,
    pub terminate_captions: Option<String>,
}

Settings for embedded captions Source

Fields

convert_608_to_708: Option<String>

Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert (UPCONVERT), MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708.

source_608_channel_number: Option<i64>

Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.

source_608_track_number: Option<i64>

Specifies the video track index used for extracting captions. The system only supports one input video track, so this should always be set to '1'.

terminate_captions: Option<String>

By default, the service terminates any unterminated captions at the end of each input. If you want the caption to continue onto your next input, disable this setting.

Trait Implementations

impl Clone for EmbeddedSourceSettings[src]

impl Default for EmbeddedSourceSettings[src]

impl PartialEq<EmbeddedSourceSettings> for EmbeddedSourceSettings[src]

impl Debug for EmbeddedSourceSettings[src]

impl Serialize for EmbeddedSourceSettings[src]

impl<'de> Deserialize<'de> for EmbeddedSourceSettings[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