interface EmbeddedCaptionSourceOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.EmbeddedCaptionSourceOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#EmbeddedCaptionSourceOptions |
Java | software.amazon.awscdk.services.medialive.alpha.EmbeddedCaptionSourceOptions |
Python | aws_cdk.aws_medialive_alpha.EmbeddedCaptionSourceOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป EmbeddedCaptionSourceOptions |
Options for an embedded (CEA-608/708) caption source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const convert608To708: medialive_alpha.Convert608To708;
declare const scte20Detection: medialive_alpha.Scte20Detection;
const embeddedCaptionSourceOptions: medialive_alpha.EmbeddedCaptionSourceOptions = {
convert608To708: convert608To708,
scte20Detection: scte20Detection,
source608ChannelNumber: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| convert608 | Convert608 | Whether to upconvert 608 captions to 708. |
| scte20 | Scte20 | SCTE-20 detection mode. |
| source608 | number | The 608/708 channel number within the video track to extract captions from. |
convert608To708?
Type:
Convert608
(optional, default: Convert608To708.DISABLED)
Whether to upconvert 608 captions to 708.
scte20Detection?
Type:
Scte20
(optional, default: Scte20Detection.OFF)
SCTE-20 detection mode.
source608ChannelNumber?
Type:
number
(optional, default: MediaLive service default)
The 608/708 channel number within the video track to extract captions from.

.NET
Go
Java
Python
TypeScript (