Class: Aws::MediaConvert::Types::EmbeddedSourceSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::EmbeddedSourceSettings
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
When making an API call, you may pass EmbeddedSourceSettings data as a hash:
{
convert_608_to_708: "UPCONVERT", # accepts UPCONVERT, DISABLED
source_608_channel_number: 1,
source_608_track_number: 1,
terminate_captions: "END_OF_INPUT", # accepts END_OF_INPUT, DISABLED
}
Settings for embedded captions Source
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#convert_608_to_708 ⇒ String
Specify whether this set of input captions appears in your outputs in both 608 and 708 format.
-
#source_608_channel_number ⇒ Integer
Specifies the 608/708 channel number within the video track from which to extract captions.
-
#source_608_track_number ⇒ Integer
Specifies the video track index used for extracting captions.
-
#terminate_captions ⇒ String
By default, the service terminates any unterminated captions at the end of each input.
Instance Attribute Details
#convert_608_to_708 ⇒ 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.
9299 9300 9301 9302 9303 9304 9305 9306 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9299 class EmbeddedSourceSettings < Struct.new( :convert_608_to_708, :source_608_channel_number, :source_608_track_number, :terminate_captions) SENSITIVE = [] include Aws::Structure end |
#source_608_channel_number ⇒ Integer
Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
9299 9300 9301 9302 9303 9304 9305 9306 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9299 class EmbeddedSourceSettings < Struct.new( :convert_608_to_708, :source_608_channel_number, :source_608_track_number, :terminate_captions) SENSITIVE = [] include Aws::Structure end |
#source_608_track_number ⇒ Integer
Specifies the video track index used for extracting captions. The system only supports one input video track, so this should always be set to '1'.
9299 9300 9301 9302 9303 9304 9305 9306 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9299 class EmbeddedSourceSettings < Struct.new( :convert_608_to_708, :source_608_channel_number, :source_608_track_number, :terminate_captions) SENSITIVE = [] include Aws::Structure end |
#terminate_captions ⇒ String
By default, the service terminates any unterminated captions at the end of each input. If you want the caption to continue onto your next input, disable this setting.
9299 9300 9301 9302 9303 9304 9305 9306 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9299 class EmbeddedSourceSettings < Struct.new( :convert_608_to_708, :source_608_channel_number, :source_608_track_number, :terminate_captions) SENSITIVE = [] include Aws::Structure end |