Module Values.StreamSelectionSource

A StreamSelection configuration.

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

    The maximum video bitrate (bps) to include in output.

    *)
  2. minVideoBitsPerSecond : int option;
    (*

    The minimum video bitrate (bps) to include in output.

    *)
  3. streamOrder : StreamOrder.t option;
    (*

    A directive that determines the order of streams in the output.

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