EbuTtDDestinationProps

class aws_cdk.aws_medialive_alpha.EbuTtDDestinationProps(*, copyright_holder=None, default_font_size=None, default_line_height=None, fill_line_gap=None, font_family=None, style_control=None)

Bases: object

(experimental) Properties for EBU-TT-D caption output.

Parameters:
  • copyright_holder (Optional[str]) – (experimental) The copyright holder included in the TTML copyright metadata tag. Default: - no copyright holder

  • default_font_size (Union[int, float, None]) – (experimental) The default font size. Default: - service default

  • default_line_height (Union[int, float, None]) – (experimental) The default line height. Default: - service default

  • fill_line_gap (Optional[EbuTtDFillLineGap]) – (experimental) How to handle the gap between multi-line captions. Default: - service default

  • font_family (Optional[str]) – (experimental) A comma-separated list of font families to include (valid only when styleControl is INCLUDE). Default: - ‘monospaced’

  • style_control (Optional[EbuTtDStyleControl]) – (experimental) Whether source style information is included in the EBU-TT-D font data. Default: - service default

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

# ebu_tt_d_fill_line_gap: medialive_alpha.EbuTtDFillLineGap
# ebu_tt_d_style_control: medialive_alpha.EbuTtDStyleControl

ebu_tt_d_destination_props = medialive_alpha.EbuTtDDestinationProps(
    copyright_holder="copyrightHolder",
    default_font_size=123,
    default_line_height=123,
    fill_line_gap=ebu_tt_d_fill_line_gap,
    font_family="fontFamily",
    style_control=ebu_tt_d_style_control
)

Attributes

copyright_holder

(experimental) The copyright holder included in the TTML copyright metadata tag.

Default:
  • no copyright holder

Stability:

experimental

default_font_size

(experimental) The default font size.

Default:
  • service default

Stability:

experimental

default_line_height

(experimental) The default line height.

Default:
  • service default

Stability:

experimental

fill_line_gap

(experimental) How to handle the gap between multi-line captions.

Default:
  • service default

Stability:

experimental

font_family

(experimental) A comma-separated list of font families to include (valid only when styleControl is INCLUDE).

Default:
  • ‘monospaced’

Stability:

experimental

style_control

(experimental) Whether source style information is included in the EBU-TT-D font data.

Default:
  • service default

Stability:

experimental