interface SmartSubtitleSourceOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SmartSubtitleSourceOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SmartSubtitleSourceOptions |
Java | software.amazon.awscdk.services.medialive.alpha.SmartSubtitleSourceOptions |
Python | aws_cdk.aws_medialive_alpha.SmartSubtitleSourceOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SmartSubtitleSourceOptions |
Options for a smart subtitle caption source (AI-generated subtitles via Elemental Inference).
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 captionSynchronizationMode: medialive_alpha.CaptionSynchronizationMode;
const smartSubtitleSourceOptions: medialive_alpha.SmartSubtitleSourceOptions = {
captionSynchronizationMode: captionSynchronizationMode,
inferenceFeedOutput: 'inferenceFeedOutput',
};
Properties
| Name | Type | Description |
|---|---|---|
| caption | Caption | Controls whether MediaLive delays video to synchronize captions with audio and video output. |
| inference | string | The name of the Elemental Inference feed output that provides the subtitles. |
captionSynchronizationMode?
Type:
Caption
(optional, default: service default)
Controls whether MediaLive delays video to synchronize captions with audio and video output.
inferenceFeedOutput?
Type:
string
(optional, default: service default)
The name of the Elemental Inference feed output that provides the subtitles.

.NET
Go
Java
Python
TypeScript (