Module Values.TimecodeBurninSource

Settings for burning the output timecode and specified prefix into the output.

Sourcetype nonrec t = {
  1. fontSize : int option;
    (*

    Use Font size to set the font size of any burned-in timecode. Valid values are 10, 16, 32, 48.

    *)
  2. position : TimecodeBurninPosition.t option;
    (*

    Use Position under Timecode burn-in to specify the location the burned-in timecode on output video.

    *)
  3. prefix : string option;
    (*

    Use Prefix to place ASCII characters before any burned-in timecode. For example, a prefix of "EZ-" will result in the timecode "EZ-00:00:00:00". Provide either the characters themselves or the ASCII code equivalents. The supported range of characters is 0x20 through 0x7e. This includes letters, numbers, and all special characters represented on a standard English keyboard.

    *)
}
Sourceval make : ?fontSize:??? -> ?position:??? -> ?prefix:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) 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