[][src]Struct rusoto_elastictranscoder::CaptionSource

pub struct CaptionSource {
    pub encryption: Option<Encryption>,
    pub key: Option<String>,
    pub label: Option<String>,
    pub language: Option<String>,
    pub time_offset: Option<String>,
}

A source file for the input sidecar captions used during the transcoding process.

Fields

encryption: Option<Encryption>

The encryption settings, if any, that Elastic Transcoder needs to decyrpt your caption sources, or that you want Elastic Transcoder to apply to your caption sources.

key: Option<String>

The name of the sidecar caption file that you want Elastic Transcoder to include in the output file.

label: Option<String>

The label of the caption shown in the player when choosing a language. We recommend that you put the caption language name here, in the language of the captions.

language: Option<String>

A string that specifies the language of the caption. If you specified multiple inputs with captions, the caption language must match in order to be included in the output. Specify this as one of:

  • 2-character ISO 639-1 code

  • 3-character ISO 639-2 code

For more information on ISO language codes and language names, see the List of ISO 639-1 codes.

time_offset: Option<String>

For clip generation or captions that do not start at the same time as the associated video file, the TimeOffset tells Elastic Transcoder how much of the video to encode before including captions.

Specify the TimeOffset in the form [+-]SS.sss or [+-]HH:mm:SS.ss.

Trait Implementations

impl Clone for CaptionSource[src]

impl Debug for CaptionSource[src]

impl Default for CaptionSource[src]

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

impl PartialEq<CaptionSource> for CaptionSource[src]

impl Serialize for CaptionSource[src]

impl StructuralPartialEq for CaptionSource[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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.