Struct aws_sdk_elastictranscoder::model::CaptionSource
source · [−]#[non_exhaustive]pub struct CaptionSource {
pub key: Option<String>,
pub language: Option<String>,
pub time_offset: Option<String>,
pub label: Option<String>,
pub encryption: Option<Encryption>,
}
Expand description
A source file for the input sidecar captions used during the transcoding process.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.key: Option<String>
The name of the sidecar caption file that you want Elastic Transcoder to include in the output file.
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.
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.
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.
Implementations
sourceimpl CaptionSource
impl CaptionSource
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
The name of the sidecar caption file that you want Elastic Transcoder to include in the output file.
sourcepub fn language(&self) -> Option<&str>
pub fn language(&self) -> Option<&str>
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.
sourcepub fn time_offset(&self) -> Option<&str>
pub fn time_offset(&self) -> Option<&str>
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.
sourcepub fn label(&self) -> Option<&str>
pub fn label(&self) -> Option<&str>
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.
sourcepub fn encryption(&self) -> Option<&Encryption>
pub fn encryption(&self) -> 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.
sourceimpl CaptionSource
impl CaptionSource
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CaptionSource
Trait Implementations
sourceimpl Clone for CaptionSource
impl Clone for CaptionSource
sourcefn clone(&self) -> CaptionSource
fn clone(&self) -> CaptionSource
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CaptionSource
impl Debug for CaptionSource
sourceimpl PartialEq<CaptionSource> for CaptionSource
impl PartialEq<CaptionSource> for CaptionSource
sourcefn eq(&self, other: &CaptionSource) -> bool
fn eq(&self, other: &CaptionSource) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CaptionSource) -> bool
fn ne(&self, other: &CaptionSource) -> bool
This method tests for !=
.
impl StructuralPartialEq for CaptionSource
Auto Trait Implementations
impl RefUnwindSafe for CaptionSource
impl Send for CaptionSource
impl Sync for CaptionSource
impl Unpin for CaptionSource
impl UnwindSafe for CaptionSource
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more