Module Values.RemixSettingsSource

Remix Settings

Sourcetype nonrec t = {
  1. channelMappings : AudioChannelMapping.t list;
    (*

    Mapping of input channels to output channels, with appropriate gain adjustments.

    *)
  2. channelsIn : int option;
    (*

    Number of input channels to be used.

    *)
  3. channelsOut : int option;
    (*

    Number of output channels to be produced. Valid values: 1, 2, 4, 6, 8

    *)
}
Sourceval context_ : string
Sourceval make : ?channelsIn:??? -> ?channelsOut:??? -> channelMappings:AudioChannelMapping.t list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `List of [> `Structure of (string * [> `Integer of int | `List of [> `Structure of (string * [> `Integer of int ]) 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