Module Values.MediaStreamSourceConfigurationSource

The media stream that is associated with the source, and the parameters for that association.

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

    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 : InputConfiguration.t list option;
    (*

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

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

    A name that helps you distinguish one media stream from another.

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