interface Scte27CaptionSourceOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Scte27CaptionSourceOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Scte27CaptionSourceOptions |
Java | software.amazon.awscdk.services.medialive.alpha.Scte27CaptionSourceOptions |
Python | aws_cdk.aws_medialive_alpha.Scte27CaptionSourceOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Scte27CaptionSourceOptions |
Options for an SCTE-27 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 ocrLanguage: medialive_alpha.OcrLanguage;
const scte27CaptionSourceOptions: medialive_alpha.Scte27CaptionSourceOptions = {
ocrLanguage: ocrLanguage,
pid: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| ocr | Ocr | The OCR language to use when converting this image-based source to text. |
| pid? | number | The PID to extract captions from. |
ocrLanguage?
Type:
Ocr
(optional, default: MediaLive service default)
The OCR language to use when converting this image-based source to text.
pid?
Type:
number
(optional, default: MediaLive service default)
The PID to extract captions from.
See the MediaLive docs for how PID and languageCode
interact.

.NET
Go
Java
Python
TypeScript (