EmbeddedCaptionSourceOptions
- class aws_cdk.aws_medialive_alpha.EmbeddedCaptionSourceOptions(*, convert608_to708=None, scte20_detection=None, source608_channel_number=None)
Bases:
object(experimental) Options for an embedded (CEA-608/708) caption source.
- Parameters:
convert608_to708 (
Optional[Convert608To708]) – (experimental) Whether to upconvert 608 captions to 708. Default: Convert608To708.DISABLEDscte20_detection (
Optional[Scte20Detection]) – (experimental) SCTE-20 detection mode. Default: Scte20Detection.OFFsource608_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_detection: medialive_alpha.Scte20Detection embedded_caption_source_options = medialive_alpha.EmbeddedCaptionSourceOptions( convert608_to708=convert608_to708, scte20_detection=scte20_detection, source608_channel_number=123 )
Attributes
- convert608_to708
(experimental) Whether to upconvert 608 captions to 708.
- Default:
Convert608To708.DISABLED
- Stability:
experimental
- scte20_detection
(experimental) SCTE-20 detection mode.
- Default:
Scte20Detection.OFF
- 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