interface DvbSubCaptionSourceOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.DvbSubCaptionSourceOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#DvbSubCaptionSourceOptions |
Java | software.amazon.awscdk.services.medialive.alpha.DvbSubCaptionSourceOptions |
Python | aws_cdk.aws_medialive_alpha.DvbSubCaptionSourceOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป DvbSubCaptionSourceOptions |
Options for a DVB-Sub 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 dvbSubCaptionSourceOptions: medialive_alpha.DvbSubCaptionSourceOptions = {
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 of the source content. |
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 of the source content.
Unused for DVB-Sub passthrough.

.NET
Go
Java
Python
TypeScript (