Class: Aws::MediaConvert::Types::CaptionSelector
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::CaptionSelector
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 100 captions selectors per input.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_language_code ⇒ String
The specific language to extract from source, using the ISO 639-2 or ISO 639-3 three-letter language code.
-
#language_code ⇒ String
The specific language to extract from source.
-
#source_settings ⇒ Types::CaptionSourceSettings
If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions source file.
Instance Attribute Details
#custom_language_code ⇒ String
The specific language to extract from source, using the ISO 639-2 or ISO 639-3 three-letter language code. If input is SCTE-27, complete this field and/or PID to select the caption language to extract. If input is DVB-Sub and output is Burn-in, complete this field and/or PID to select the caption language to extract. If input is DVB-Sub that is being passed through, omit this field (and PID field); there is no way to extract a specific language with pass-through captions.
1886 1887 1888 1889 1890 1891 1892 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 1886 class CaptionSelector < Struct.new( :custom_language_code, :language_code, :source_settings) SENSITIVE = [] include Aws::Structure end |
#language_code ⇒ String
The specific language to extract from source. If input is SCTE-27, complete this field and/or PID to select the caption language to extract. If input is DVB-Sub and output is Burn-in, complete this field and/or PID to select the caption language to extract. If input is DVB-Sub that is being passed through, omit this field (and PID field); there is no way to extract a specific language with pass-through captions.
1886 1887 1888 1889 1890 1891 1892 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 1886 class CaptionSelector < Struct.new( :custom_language_code, :language_code, :source_settings) SENSITIVE = [] include Aws::Structure end |
#source_settings ⇒ Types::CaptionSourceSettings
If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings.
1886 1887 1888 1889 1890 1891 1892 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 1886 class CaptionSelector < Struct.new( :custom_language_code, :language_code, :source_settings) SENSITIVE = [] include Aws::Structure end |