interface EbuTtDDestinationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.EbuTtDDestinationProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#EbuTtDDestinationProps |
Java | software.amazon.awscdk.services.medialive.alpha.EbuTtDDestinationProps |
Python | aws_cdk.aws_medialive_alpha.EbuTtDDestinationProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป EbuTtDDestinationProps |
Properties for EBU-TT-D caption output.
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 ebuTtDFillLineGap: medialive_alpha.EbuTtDFillLineGap;
declare const ebuTtDStyleControl: medialive_alpha.EbuTtDStyleControl;
const ebuTtDDestinationProps: medialive_alpha.EbuTtDDestinationProps = {
copyrightHolder: 'copyrightHolder',
defaultFontSize: 123,
defaultLineHeight: 123,
fillLineGap: ebuTtDFillLineGap,
fontFamily: 'fontFamily',
styleControl: ebuTtDStyleControl,
};
Properties
| Name | Type | Description |
|---|---|---|
| copyright | string | The copyright holder included in the TTML copyright metadata tag. |
| default | number | The default font size. |
| default | number | The default line height. |
| fill | Ebu | How to handle the gap between multi-line captions. |
| font | string | A comma-separated list of font families to include (valid only when styleControl is INCLUDE). |
| style | Ebu | Whether source style information is included in the EBU-TT-D font data. |
copyrightHolder?
Type:
string
(optional, default: no copyright holder)
The copyright holder included in the TTML copyright metadata tag.
defaultFontSize?
Type:
number
(optional, default: service default)
The default font size.
defaultLineHeight?
Type:
number
(optional, default: service default)
The default line height.
fillLineGap?
Type:
Ebu
(optional, default: service default)
How to handle the gap between multi-line captions.
fontFamily?
Type:
string
(optional, default: 'monospaced')
A comma-separated list of font families to include (valid only when styleControl is INCLUDE).
styleControl?
Type:
Ebu
(optional, default: service default)
Whether source style information is included in the EBU-TT-D font data.

.NET
Go
Java
Python
TypeScript (