Module Values.MediaStreamSourceConfigurationRequestSource

The media stream that you want to associate with the source, and the parameters for that association.

Sourcetype nonrec t = {
  1. encodingName : EncodingName.t;
    (*

    The format that was used to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.

    *)
  2. inputConfigurations : InputConfigurationRequest.t list option;
    (*

    The media streams that you want to associate with the source.

    *)
  3. mediaStreamName : String_.t;
    (*

    The name of the media stream.

    *)
}
Sourceval context_ : string
Sourceval make : ?inputConfigurations:??? -> encodingName:EncodingName.t -> mediaStreamName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `String of String_.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