interface DvbSubSourceSettingsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MediaLive.CfnChannel.DvbSubSourceSettingsProperty | 
  Java | software.amazon.awscdk.services.medialive.CfnChannel.DvbSubSourceSettingsProperty | 
  Python | aws_cdk.aws_medialive.CfnChannel.DvbSubSourceSettingsProperty | 
  TypeScript  | @aws-cdk/aws-medialive » CfnChannel » DvbSubSourceSettingsProperty | 
Information about the DVB Sub captions to extract from the input.
The parent of this entity is CaptionSelectorSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive from '@aws-cdk/aws-medialive';
const dvbSubSourceSettingsProperty: medialive.CfnChannel.DvbSubSourceSettingsProperty = {
  ocrLanguage: 'ocrLanguage',
  pid: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| ocr | string | If you will configure a WebVTT caption description that references this caption selector, use this field to provide the language to consider when translating the image-based source to text. | 
| pid? | number | When using DVB-Sub with burn-in or SMPTE-TT, use this PID for the source content. | 
ocrLanguage?
Type:
string
(optional)
If you will configure a WebVTT caption description that references this caption selector, use this field to provide the language to consider when translating the image-based source to text.
pid?
Type:
number
(optional)
When using DVB-Sub with burn-in or SMPTE-TT, use this PID for the source content.
It is unused for DVB-Sub passthrough. All DVB-Sub content is passed through, regardless of selectors.

 .NET
 Java
 Python
 TypeScript