interface DvbSubSourceSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.DvbSubSourceSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_DvbSubSourceSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.DvbSubSourceSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.DvbSubSourceSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » 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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const dvbSubSourceSettingsProperty: medialive.CfnChannelPropsMixin.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
Go
Java
Python
TypeScript