Module Values.VideoSourceDetailsSource

Details about a video source, including its identifier, format, and time information.

Sourcetype nonrec t = {
  1. mediaId : MediaId.t option;
    (*

    Unique identifier for the video media file.

    *)
  2. mediaMimeType : String_.t option;
    (*

    The MIME type of the video file (e.g., video/mp4, video/avi).

    *)
  3. startTimeMilliseconds : Long.t option;
    (*

    The starting timestamp in milliseconds for the relevant video segment.

    *)
  4. endTimeMilliseconds : Long.t option;
    (*

    The ending timestamp in milliseconds for the relevant video segment.

    *)
  5. videoExtractionType : VideoExtractionType.t option;
    (*

    The type of video extraction performed on the content.

    *)
}
Sourceval make : ?mediaId:??? -> ?mediaMimeType:??? -> ?startTimeMilliseconds:??? -> ?endTimeMilliseconds:??? -> ?videoExtractionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of MediaId.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