Module Values.SrtSource

Specifies information needed to stream using the SRT protocol.

Sourcetype nonrec t = {
  1. endpoint : SrtEndpoint.t option;
    (*

    The endpoint to be used when streaming with IVS using the SRT protocol.

    *)
  2. passphrase : SrtPassphrase.t option;
    (*

    Auto-generated passphrase to enable encryption. This field is applicable only if the end user has not enabled the insecureIngest option for the channel.

    *)
}
Sourceval make : ?endpoint:??? -> ?passphrase:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SrtEndpoint.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