Module Values.IngestConfigurationsSource

Object specifying the ingest configuration set up by the broadcaster, usually in an encoder. Note: Use IngestConfigurations instead of IngestConfiguration (which is deprecated). If multitrack is not enabled, IngestConfiguration and IngestConfigurations contain the same data, namely information about Track0 (the sole track). If multitrack is enabled, IngestConfiguration contains data for only the first track (Track0) and IngestConfigurations contains data for all tracks.

Sourcetype nonrec t = {
  1. videoConfigurations : VideoConfigurationList.t option;
    (*

    Encoder settings for video

    *)
  2. audioConfigurations : AudioConfigurationList.t option;
    (*

    Encoder settings for audio.

    *)
}
Sourceval make : ?videoConfigurations:??? -> ?audioConfigurations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Long of Integer.t | `String of String_.t ]) 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