[][src]Struct rusoto_mediaconvert::FileSourceSettings

pub struct FileSourceSettings {
    pub convert_608_to_708: Option<String>,
    pub source_file: Option<String>,
    pub time_delta: Option<i64>,
}

If your input captions are SCC, SMI, SRT, STL, TTML, or IMSC 1.1 in an xml file, specify the URI of the input caption source file. If your caption source is IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings.

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_file: Option<String>

External caption file used for loading captions. Accepted file extensions are 'scc', 'ttml', 'dfxp', 'stl', 'srt', 'xml', and 'smi'.

time_delta: Option<i64>

Specifies a time delta in seconds to offset the captions from the source file.

Trait Implementations

impl Clone for FileSourceSettings[src]

impl Debug for FileSourceSettings[src]

impl Default for FileSourceSettings[src]

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

impl PartialEq<FileSourceSettings> for FileSourceSettings[src]

impl Serialize for FileSourceSettings[src]

impl StructuralPartialEq for FileSourceSettings[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: 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> 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.