interface CmafCaptionLanguageMapping
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.CmafCaptionLanguageMapping |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#CmafCaptionLanguageMapping |
Java | software.amazon.awscdk.services.medialive.alpha.CmafCaptionLanguageMapping |
Python | aws_cdk.aws_medialive_alpha.CmafCaptionLanguageMapping |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป CmafCaptionLanguageMapping |
Maps a captions channel to an ISO 639-2 language code for a CMAF Ingest output group.
Unlike CaptionLanguageMapping, the CMAF Ingest variant has no language description.
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 cmafCaptionLanguageMapping: medialive_alpha.CmafCaptionLanguageMapping = {
captionChannel: 123,
languageCode: 'languageCode',
};
Properties
| Name | Type | Description |
|---|---|---|
| caption | number | The closed caption channel number (1-4). |
| language | string | A three-character ISO 639-2 language code. |
captionChannel
Type:
number
The closed caption channel number (1-4).
languageCode
Type:
string
A three-character ISO 639-2 language code.

.NET
Go
Java
Python
TypeScript (