TeletextCaptionSourceOptions

class aws_cdk.aws_medialive_alpha.TeletextCaptionSourceOptions(*, output_rectangle=None, page_number=None)

Bases: object

(experimental) Options for a Teletext caption source.

Parameters:
  • output_rectangle (Union[CaptionRectangle, Dict[str, Any], None]) – (experimental) The caption rectangle to use when converting this source to EBU-TT-D or TTML. Default: - no rectangle (service default)

  • page_number (Optional[str]) – (experimental) The Teletext page number to extract captions from, as a hexadecimal string with no 0x prefix (range 1008FF). Unused for passthrough. Default: - MediaLive 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

teletext_caption_source_options = medialive_alpha.TeletextCaptionSourceOptions(
    output_rectangle=medialive_alpha.CaptionRectangle(
        height=123,
        left_offset=123,
        top_offset=123,
        width=123
    ),
    page_number="pageNumber"
)

Attributes

output_rectangle

(experimental) The caption rectangle to use when converting this source to EBU-TT-D or TTML.

Default:
  • no rectangle (service default)

Stability:

experimental

page_number

(experimental) The Teletext page number to extract captions from, as a hexadecimal string with no 0x prefix (range 1008FF).

Unused for passthrough.

Default:
  • MediaLive service default

Stability:

experimental