interface DashTtmlConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.CfnOriginEndpoint.DashTtmlConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_DashTtmlConfigurationProperty |
Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty |
Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnOriginEndpoint » DashTtmlConfigurationProperty |
The settings for TTML subtitles.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const dashTtmlConfigurationProperty: mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty = {
ttmlProfile: 'ttmlProfile',
};
Properties
| Name | Type | Description |
|---|---|---|
| ttml | string | The profile that MediaPackage uses when signaling subtitles in the manifest. |
ttmlProfile
Type:
string
The profile that MediaPackage uses when signaling subtitles in the manifest.
IMSC is the default profile. EBU-TT-D produces subtitles that are compliant with the EBU-TT-D TTML profile. MediaPackage passes through subtitle styles to the manifest. For more information about EBU-TT-D subtitles, see EBU-TT-D Subtitling Distribution Format .

.NET
Go
Java
Python
TypeScript