Module Values.ContainerSource

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.

Sourcetype nonrec t = {
  1. duration : float option;
    (*

    The total duration of your media file, in seconds.

    *)
  2. format : Format_.t option;
    (*

    The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM, MXF, Wave, AVI, or MPEG-TS. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.

    *)
  3. startTimecode : string option;
    (*

    The start timecode of the media file, in HH:MM:SS:FF format (or HH:MM:SS;FF for drop frame timecode). Note that this field is null when the container does not include an embedded start timecode.

    *)
  4. tracks : Track.t list option;
    (*

    Details about each track (video, audio, or data) in the media file.

    *)
}
Sourceval make : ?duration:??? -> ?format:??? -> ?startTimecode:??? -> ?tracks:??? -> unit -> t
Sourceval to_value : t -> [> `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 | `String of string ]) 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