Module Values.TeletextSourceSettingsSource

Teletext Source Settings

Sourcetype nonrec t = {
  1. outputRectangle : CaptionRectangle.t option;
    (*

    Optionally defines a region where TTML style captions will be displayed

    *)
  2. pageNumber : string option;
    (*

    Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no "0x" prefix.

    *)
}
Sourceval make : ?outputRectangle:??? -> ?pageNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Double of float ]) list ]) 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