Module Values.PresetSettingsSource

Settings for preset

Sourcetype nonrec t = {
  1. audioDescriptions : AudioDescription.t list option;
    (*

    Contains groups of audio encoding settings organized by audio codec. Include one instance of per output. Can contain multiple groups of encoding settings.

    *)
  2. captionDescriptions : CaptionDescriptionPreset.t list option;
    (*

    This object holds groups of settings related to captions for one output. For each output that has captions, include one instance of CaptionDescriptions.

    *)
  3. containerSettings : ContainerSettings.t option;
    (*

    Container specific settings.

    *)
  4. videoDescription : VideoDescription.t option;
    (*

    VideoDescription contains a group of video encoding settings. The specific video settings depend on the video codec that you choose for the property codec. Include one instance of VideoDescription per output.

    *)
}
Sourceval make : ?audioDescriptions:??? -> ?captionDescriptions:??? -> ?containerSettings:??? -> ?videoDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string ] list | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string | `Structure of (string * [> `List of [> `Double of float | `Integer of int ] list ]) list ] list | `String of string ]) list ]) list ]) list ] list | `Structure of (string * [> `Enum of string | `Integer of int | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Integer of int ] list | `String of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string | `Structure of (string * [> `Integer of int | `String of string ]) list ] list | `String of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `String of string ]) list ]) list ]) list ]) 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