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.
1896 1897 1898 1899 1900 1901 1902 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 1896 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.
1896 1897 1898 1899 1900 1901 1902 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 1896 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.
1896 1897 1898 1899 1900 1901 1902 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 1896 class CaptionSelector < Struct.new( :custom_language_code, :language_code, :source_settings) SENSITIVE = [] include Aws::Structure end |