DashDvbFontDownload

class aws_cdk.aws_mediapackagev2_alpha.DashDvbFontDownload(*, font_family=None, mime_type=None, url=None)

Bases: object

(experimental) For use with DVB-DASH profiles only.

The settings for font downloads that you want AWS Elemental MediaPackage to pass through to the manifest.

Parameters:
  • font_family (Optional[str]) – (experimental) The fontFamily name for subtitles, as described in EBU-TT-D Subtitling Distribution Format. Default: - No font family specified

  • mime_type (Optional[str]) – (experimental) 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. Default: - No MIME type specified

  • url (Optional[str]) – (experimental) The URL for downloading fonts for subtitles. Default: - No font download URL specified

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_mediapackagev2_alpha as mediapackagev2_alpha

dash_dvb_font_download = mediapackagev2_alpha.DashDvbFontDownload(
    font_family="fontFamily",
    mime_type="mimeType",
    url="url"
)

Attributes

font_family

(experimental) The fontFamily name for subtitles, as described in EBU-TT-D Subtitling Distribution Format.

Default:
  • No font family specified

Stability:

experimental

External:

https://tech.ebu.ch/publications/tech3380

mime_type

(experimental) 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.

Default:
  • No MIME type specified

Stability:

experimental

External:

https://dvb.org/wp-content/uploads/2021/06/A168r4_MPEG-DASH-Profile-for-Transport-of-ISO-BMFF-Based-DVB-Services_Draft-ts_103-285-v140_November_2021.pdf

url

(experimental) The URL for downloading fonts for subtitles.

Default:
  • No font download URL specified

Stability:

experimental