Scte20CaptionSourceOptions

class aws_cdk.aws_medialive_alpha.Scte20CaptionSourceOptions(*, convert608_to708=None, source608_channel_number=None)

Bases: object

(experimental) Options for an SCTE-20 caption source.

Parameters:
  • convert608_to708 (Optional[Convert608To708]) – (experimental) Whether to upconvert 608 captions to 708. Default: Convert608To708.DISABLED

  • source608_channel_number (Union[int, float, None]) – (experimental) The 608/708 channel number within the video track to extract captions from. 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

# convert608_to708: medialive_alpha.Convert608To708

scte20_caption_source_options = medialive_alpha.Scte20CaptionSourceOptions(
    convert608_to708=convert608_to708,
    source608_channel_number=123
)

Attributes

convert608_to708

(experimental) Whether to upconvert 608 captions to 708.

Default:

Convert608To708.DISABLED

Stability:

experimental

source608_channel_number

(experimental) The 608/708 channel number within the video track to extract captions from.

Default:
  • MediaLive service default

Stability:

experimental