Module Values.NdiSourceMetadataInfoSource

Comprehensive information about the NDI® source that's associated with a flow. This includes the currently active NDI source, a list of all discovered NDI senders, metadata about the media streams, and any relevant status messages.

Sourcetype nonrec t = {
  1. activeSource : NdiSourceInfo.t option;
    (*

    The connected NDI sender that's currently sending source content to the flow's NDI source.

    *)
  2. discoveredSources : NdiSourceInfo.t list option;
    (*

    A list of the available upstream NDI senders aggregated from all of your configured discovery servers.

    *)
  3. mediaInfo : NdiMediaInfo.t option;
    (*

    Detailed information about the media streams (video, audio, and so on) that are part of the active NDI source.

    *)
  4. messages : MessageDetail.t list option;
    (*

    Any status messages or error codes related to the NDI source and its metadata.

    *)
}
Sourceval make : ?activeSource:??? -> ?discoveredSources:??? -> ?mediaInfo:??? -> ?messages:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ] list | `String of String_.t ]) list ]) 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