Module Values.TrackMappingSource

An array containing track mapping information.

Sourcetype nonrec t = {
  1. audioTrackIndexes : int list option;
    (*

    The index numbers of the audio tracks in your media file.

    *)
  2. dataTrackIndexes : int list option;
    (*

    The index numbers of the data tracks in your media file.

    *)
  3. videoTrackIndexes : int list option;
    (*

    The index numbers of the video tracks in your media file.

    *)
}
Sourceval make : ?audioTrackIndexes:??? -> ?dataTrackIndexes:??? -> ?videoTrackIndexes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Integer of int ] 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