interface DashDvbFontDownload
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.Alpha.DashDvbFontDownload |
Go | github.com/aws/aws-cdk-go/awsmediapackagev2alpha/v2#DashDvbFontDownload |
Java | software.amazon.awscdk.services.mediapackagev2.alpha.DashDvbFontDownload |
Python | aws_cdk.aws_mediapackagev2_alpha.DashDvbFontDownload |
TypeScript (source) | @aws-cdk/aws-mediapackagev2-alpha ยป DashDvbFontDownload |
For use with DVB-DASH profiles only.
The settings for font downloads that you want AWS Elemental MediaPackage to pass through to the manifest.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediapackagev2_alpha from '@aws-cdk/aws-mediapackagev2-alpha';
const dashDvbFontDownload: mediapackagev2_alpha.DashDvbFontDownload = {
fontFamily: 'fontFamily',
mimeType: 'mimeType',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| font | string | The fontFamily name for subtitles, as described in EBU-TT-D Subtitling Distribution Format. |
| mime | string | The mimeType of the resource that's at the font download URL. |
| url? | string | The URL for downloading fonts for subtitles. |
fontFamily?
Type:
string
(optional, default: No font family specified)
The fontFamily name for subtitles, as described in EBU-TT-D Subtitling Distribution Format.
mimeType?
Type:
string
(optional, default: No MIME type specified)
The mimeType of the resource that's at the font download URL.
For information about font MIME types, see the MPEG-DASH Profile for Transport of ISO BMFF Based DVB Services over IP Based Networks document.
url?
Type:
string
(optional, default: No font download URL specified)
The URL for downloading fonts for subtitles.

.NET
Go
Java
Python
TypeScript (