Module Values.DashDvbFontDownloadSource

For use with DVB-DASH profiles only. The settings for font downloads that you want Elemental MediaPackage to pass through to the manifest.

Sourcetype nonrec t = {
  1. url : DashDvbFontDownloadUrlString.t option;
    (*

    The URL for downloading fonts for subtitles.

    *)
  2. mimeType : DashDvbFontDownloadMimeTypeString.t option;
    (*

    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.

    *)
  3. fontFamily : DashDvbFontDownloadFontFamilyString.t option;
    (*

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

    *)
}
Sourceval make : ?url:??? -> ?mimeType:??? -> ?fontFamily:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DashDvbFontDownloadUrlString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t