interface TeletextCaptionSourceOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.TeletextCaptionSourceOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#TeletextCaptionSourceOptions |
Java | software.amazon.awscdk.services.medialive.alpha.TeletextCaptionSourceOptions |
Python | aws_cdk.aws_medialive_alpha.TeletextCaptionSourceOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป TeletextCaptionSourceOptions |
Options for a Teletext 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';
const teletextCaptionSourceOptions: medialive_alpha.TeletextCaptionSourceOptions = {
outputRectangle: {
height: 123,
leftOffset: 123,
topOffset: 123,
width: 123,
},
pageNumber: 'pageNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| output | Caption | The caption rectangle to use when converting this source to EBU-TT-D or TTML. |
| page | string | The Teletext page number to extract captions from, as a hexadecimal string with no 0x prefix (range 100โ8FF). |
outputRectangle?
Type:
Caption
(optional, default: no rectangle (service default))
The caption rectangle to use when converting this source to EBU-TT-D or TTML.
pageNumber?
Type:
string
(optional, default: MediaLive service default)
The Teletext page number to extract captions from, as a hexadecimal string with no 0x prefix (range 100โ8FF).
Unused for passthrough.

.NET
Go
Java
Python
TypeScript (