Class: Aws::MediaConvert::Types::DvbSubDestinationSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::DvbSubDestinationSettings
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
When making an API call, you may pass DvbSubDestinationSettings data as a hash:
{
alignment: "CENTERED", # accepts CENTERED, LEFT, AUTO
apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
background_opacity: 1,
dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
dds_x_coordinate: 1,
dds_y_coordinate: 1,
fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
font_color: "WHITE", # accepts WHITE, BLACK, YELLOW, RED, GREEN, BLUE, HEX, AUTO
font_opacity: 1,
font_resolution: 1,
font_script: "AUTOMATIC", # accepts AUTOMATIC, HANS, HANT
font_size: 1,
height: 1,
hex_font_color: "__stringMin6Max8Pattern09aFAF609aFAF2",
outline_color: "BLACK", # accepts BLACK, WHITE, YELLOW, RED, GREEN, BLUE, AUTO
outline_size: 1,
shadow_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
shadow_opacity: 1,
shadow_x_offset: 1,
shadow_y_offset: 1,
style_passthrough: "ENABLED", # accepts ENABLED, DISABLED
subtitling_type: "HEARING_IMPAIRED", # accepts HEARING_IMPAIRED, STANDARD
teletext_spacing: "FIXED_GRID", # accepts FIXED_GRID, PROPORTIONAL, AUTO
width: 1,
x_position: 1,
y_position: 1,
}
Settings related to DVB-Sub captions. Set up DVB-Sub captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/dvb-sub-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to DVB_SUB.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alignment ⇒ String
Specify the alignment of your captions.
-
#apply_font_color ⇒ String
Ignore this setting unless Style Passthrough (StylePassthrough) is set to Enabled and Font color (FontColor) set to Black, Yellow, Red, Green, Blue, or Hex.
-
#background_color ⇒ String
Specify the color of the rectangle behind the captions.
-
#background_opacity ⇒ Integer
Specify the opacity of the background rectangle.
-
#dds_handling ⇒ String
Specify how MediaConvert handles the display definition segment (DDS).
-
#dds_x_coordinate ⇒ Integer
Use this setting, along with DDS y-coordinate (ddsYCoordinate), to specify the upper left corner of the display definition segment (DDS) display window.
-
#dds_y_coordinate ⇒ Integer
Use this setting, along with DDS x-coordinate (ddsXCoordinate), to specify the upper left corner of the display definition segment (DDS) display window.
-
#fallback_font ⇒ String
Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support.
-
#font_color ⇒ String
Specify the color of the captions text.
-
#font_opacity ⇒ Integer
Specify the opacity of the burned-in captions.
-
#font_resolution ⇒ Integer
Specify the Font resolution (FontResolution) in DPI (dots per inch).
-
#font_script ⇒ String
Set Font script (FontScript) to Automatically determined (AUTOMATIC), or leave blank, to automatically determine the font script in your input captions.
-
#font_size ⇒ Integer
Specify the Font size (FontSize) in pixels.
-
#height ⇒ Integer
Specify the height, in pixels, of this set of DVB-Sub captions.
-
#hex_font_color ⇒ String
Ignore this setting unless your Font color is set to Hex.
-
#outline_color ⇒ String
Specify font outline color.
-
#outline_size ⇒ Integer
Specify the Outline size (OutlineSize) of the caption text, in pixels.
-
#shadow_color ⇒ String
Specify the color of the shadow cast by the captions.
-
#shadow_opacity ⇒ Integer
Specify the opacity of the shadow.
-
#shadow_x_offset ⇒ Integer
Specify the horizontal offset of the shadow, relative to the captions in pixels.
-
#shadow_y_offset ⇒ Integer
Specify the vertical offset of the shadow relative to the captions in pixels.
-
#style_passthrough ⇒ String
Set Style passthrough (StylePassthrough) to ENABLED to use the available style, color, and position information from your input captions.
-
#subtitling_type ⇒ String
Specify whether your DVB subtitles are standard or for hearing impaired.
-
#teletext_spacing ⇒ String
Specify whether the Text spacing (TeletextSpacing) in your captions is set by the captions grid, or varies depending on letter width.
-
#width ⇒ Integer
Specify the width, in pixels, of this set of DVB-Sub captions.
-
#x_position ⇒ Integer
Specify the horizontal position (XPosition) of the captions, relative to the left side of the outputin pixels.
-
#y_position ⇒ Integer
Specify the vertical position (YPosition) of the captions, relative to the top of the output in pixels.
Instance Attribute Details
#alignment ⇒ String
Specify the alignment of your captions. If no explicit x_position is provided, setting alignment to centered will placethe captions at the bottom center of the output. Similarly, setting a left alignment willalign captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#apply_font_color ⇒ String
Ignore this setting unless Style Passthrough (StylePassthrough) is set to Enabled and Font color (FontColor) set to Black, Yellow, Red, Green, Blue, or Hex. Use Apply font color (ApplyFontColor) for additional font color controls. When you choose White text only (WHITE_TEXT_ONLY), or leave blank, your font color setting only applies to white text in your input captions. For example, if your font color setting is Yellow, and your input captions have red and white text, your output captions will have red and yellow text. When you choose ALL_TEXT, your font color setting applies to all of your output captions text.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#background_color ⇒ String
Specify the color of the rectangle behind the captions. Leave background color (BackgroundColor) blank and set Style passthrough (StylePassthrough) to enabled to use the background color data from your input captions, if present.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#background_opacity ⇒ Integer
Specify the opacity of the background rectangle. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough (StylePassthrough) is set to enabled, leave blank to pass through the background style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all backgrounds from your output captions. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#dds_handling ⇒ String
Specify how MediaConvert handles the display definition segment (DDS). Keep the default, None (NONE), to exclude the DDS from this set of captions. Choose No display window (NO_DISPLAY_WINDOW) to have MediaConvert include the DDS but not include display window data. In this case, MediaConvert writes that information to the page composition segment (PCS) instead. Choose Specify (SPECIFIED) to have MediaConvert set up the display window based on the values that you specify in related job settings. For video resolutions that are 576 pixels or smaller in height, MediaConvert doesn't include the DDS, regardless of the value you choose for DDS handling (ddsHandling). In this case, it doesn't write the display window data to the PCS either. Related settings: Use the settings DDS x-coordinate (ddsXCoordinate) and DDS y-coordinate (ddsYCoordinate) to specify the offset between the top left corner of the display window and the top left corner of the video frame. All burn-in and DVB-Sub font settings must match.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#dds_x_coordinate ⇒ Integer
Use this setting, along with DDS y-coordinate (ddsYCoordinate), to specify the upper left corner of the display definition segment (DDS) display window. With this setting, specify the distance, in pixels, between the left side of the frame and the left side of the DDS display window. Keep the default value, 0, to have MediaConvert automatically choose this offset. Related setting: When you use this setting, you must set DDS handling (ddsHandling) to a value other than None (NONE). MediaConvert uses these values to determine whether to write page position data to the DDS or to the page composition segment (PCS). All burn-in and DVB-Sub font settings must match.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#dds_y_coordinate ⇒ Integer
Use this setting, along with DDS x-coordinate (ddsXCoordinate), to specify the upper left corner of the display definition segment (DDS) display window. With this setting, specify the distance, in pixels, between the top of the frame and the top of the DDS display window. Keep the default value, 0, to have MediaConvert automatically choose this offset. Related setting: When you use this setting, you must set DDS handling (ddsHandling) to a value other than None (NONE). MediaConvert uses these values to determine whether to write page position data to the DDS or to the page composition segment (PCS). All burn-in and DVB-Sub font settings must match.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#fallback_font ⇒ String
Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you set Fallback font (FallbackFont) to best match (BEST_MATCH), or leave blank, MediaConvert uses a supported font that most closely matches the font that your input captions specify. When there are multiple unsupported fonts in your input captions, MediaConvert matches each font with the supported font that matches best. When you explicitly choose a replacement font, MediaConvert uses that font to replace all unsupported fonts from your input.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#font_color ⇒ String
Specify the color of the captions text. Leave Font color (FontColor) blank and set Style passthrough (StylePassthrough) to enabled to use the font color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#font_opacity ⇒ Integer
Specify the opacity of the burned-in captions. 255 is opaque; 0 is transparent. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#font_resolution ⇒ Integer
Specify the Font resolution (FontResolution) in DPI (dots per inch). Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#font_script ⇒ String
Set Font script (FontScript) to Automatically determined (AUTOMATIC), or leave blank, to automatically determine the font script in your input captions. Otherwise, set to Simplified Chinese (HANS) or Traditional Chinese (HANT) if your input font script uses Simplified or Traditional Chinese. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#font_size ⇒ Integer
Specify the Font size (FontSize) in pixels. Must be a positive integer. Set to 0, or leave blank, for automatic font size. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#height ⇒ Integer
Specify the height, in pixels, of this set of DVB-Sub captions. The default value is 576 pixels. Related setting: When you use this setting, you must set DDS handling (ddsHandling) to a value other than None (NONE). All burn-in and DVB-Sub font settings must match.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#hex_font_color ⇒ String
Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexidecimal digits, representing red, green, and blue, with two optional extra digits for alpha. For example a value of 1122AABB is a red value of 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha value of 0xBB.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#outline_color ⇒ String
Specify font outline color. Leave Outline color (OutlineColor) blank and set Style passthrough (StylePassthrough) to enabled to use the font outline color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#outline_size ⇒ Integer
Specify the Outline size (OutlineSize) of the caption text, in pixels. Leave Outline size blank and set Style passthrough (StylePassthrough) to enabled to use the outline size data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#shadow_color ⇒ String
Specify the color of the shadow cast by the captions. Leave Shadow color (ShadowColor) blank and set Style passthrough (StylePassthrough) to enabled to use the shadow color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#shadow_opacity ⇒ Integer
Specify the opacity of the shadow. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough (StylePassthrough) is set to Enabled, leave Shadow opacity (ShadowOpacity) blank to pass through the shadow style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all shadows from your output captions. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#shadow_x_offset ⇒ Integer
Specify the horizontal offset of the shadow, relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#shadow_y_offset ⇒ Integer
Specify the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. Leave Shadow y-offset (ShadowYOffset) blank and set Style passthrough (StylePassthrough) to enabled to use the shadow y-offset data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#style_passthrough ⇒ String
Set Style passthrough (StylePassthrough) to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use default settings: white text with black outlining, bottom-center positioning, and automatic sizing. Whether you set Style passthrough to enabled or not, you can also choose to manually override any of the individual style and position settings.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#subtitling_type ⇒ String
Specify whether your DVB subtitles are standard or for hearing impaired. Choose hearing impaired if your subtitles include audio descriptions and dialogue. Choose standard if your subtitles include only dialogue.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#teletext_spacing ⇒ String
Specify whether the Text spacing (TeletextSpacing) in your captions is set by the captions grid, or varies depending on letter width. Choose fixed grid (FIXED_GRID) to conform to the spacing specified in the captions file more accurately. Choose proportional (PROPORTIONAL) to make the text easier to read for closed captions. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
Specify the width, in pixels, of this set of DVB-Sub captions. The default value is 720 pixels. Related setting: When you use this setting, you must set DDS handling (ddsHandling) to a value other than None (NONE). All burn-in and DVB-Sub font settings must match.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#x_position ⇒ Integer
Specify the horizontal position (XPosition) of the captions, relative to the left side of the outputin pixels. A value of 10 would result in the captions starting 10 pixels from the left ofthe output. If no explicit x_position is provided, the horizontal caption position will bedetermined by the alignment parameter. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |
#y_position ⇒ Integer
Specify the vertical position (YPosition) of the captions, relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit y_position is provided, the caption will be positioned towards the bottom of the output. Within your job settings, all of your DVB-Sub settings must be identical.
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 8701 class DvbSubDestinationSettings < Struct.new( :alignment, :apply_font_color, :background_color, :background_opacity, :dds_handling, :dds_x_coordinate, :dds_y_coordinate, :fallback_font, :font_color, :font_opacity, :font_resolution, :font_script, :font_size, :height, :hex_font_color, :outline_color, :outline_size, :shadow_color, :shadow_opacity, :shadow_x_offset, :shadow_y_offset, :style_passthrough, :subtitling_type, :teletext_spacing, :width, :x_position, :y_position) SENSITIVE = [] include Aws::Structure end |