Module Values.Eac3AtmosSettingsSource

Eac3 Atmos Settings

Sourcetype nonrec t = {
  1. bitrate : float option;
    (*

    Average bitrate in bits/second. Valid bitrates depend on the coding mode.

    *)
  2. codingMode : Eac3AtmosCodingMode.t option;
    (*

    Dolby Digital Plus with Dolby Atmos coding mode. Determines number of channels.

    *)
  3. dialnorm : int option;
    (*

    Sets the dialnorm for the output. Default 23.

    *)
  4. drcLine : Eac3AtmosDrcLine.t option;
    (*

    Sets the Dolby dynamic range compression profile.

    *)
  5. drcRf : Eac3AtmosDrcRf.t option;
    (*

    Sets the profile for heavy Dolby dynamic range compression, ensures that the instantaneous signal peaks do not exceed specified levels.

    *)
  6. heightTrim : float option;
    (*

    Height dimensional trim. Sets the maximum amount to attenuate the height channels when the downstream player isn??t configured to handle Dolby Digital Plus with Dolby Atmos and must remix the channels.

    *)
  7. surroundTrim : float option;
    (*

    Surround dimensional trim. Sets the maximum amount to attenuate the surround channels when the downstream player isn't configured to handle Dolby Digital Plus with Dolby Atmos and must remix the channels.

    *)
}
Sourceval make : ?bitrate:??? -> ?codingMode:??? -> ?dialnorm:??? -> ?drcLine:??? -> ?drcRf:??? -> ?heightTrim:??? -> ?surroundTrim:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `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