Module Values.EncodingConfigSource

The encoding configuration to apply to the NDI® source when transcoding it to a transport stream for downstream distribution. You can choose between several predefined encoding profiles based on common use cases.

Sourcetype nonrec t = {
  1. encodingProfile : EncodingProfile.t option;
    (*

    The encoding profile to use when transcoding the NDI source content to a transport stream. You can change this value while the flow is running.

    *)
  2. videoMaxBitrate : Integer.t option;
    (*

    The maximum video bitrate to use when transcoding the NDI source to a transport stream. This parameter enables you to override the default video bitrate within the encoding profile's supported range. The supported range is 10,000,000 - 50,000,000 bits per second (bps). If you don't specify a value, MediaConnect uses the default value of 20,000,000 bps.

    *)
}
Sourceval make : ?encodingProfile:??? -> ?videoMaxBitrate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) 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