Module Values.ProbeResultSource

Probe results for your media file.

Sourcetype nonrec t = {
  1. container : Container.t option;
    (*

    The container of your media file. This information helps you understand the overall structure and details of your media, including format, duration, and track layout.

    *)
  2. metadata : Metadata.t option;
    (*

    Metadata and other file information.

    *)
  3. trackMappings : TrackMapping.t list option;
    (*

    An array containing track mapping information.

    *)
}
Sourceval make : ?container:??? -> ?metadata:??? -> ?trackMappings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Integer of int ] list ]) list ] list | `Structure of (string * [> `Double of float | `Enum of string | `List of [> `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `Structure of (string * [> `Enum of string | `Integer of int | `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Integer of int ]) list ]) list ]) list ]) list ] list | `Long of Awso.Import.Int64.t | `String of string | `Timestamp of string ]) 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