Module Values.AudioSourceDetailsSource

Details about an audio source, including its identifier, format, and time information.

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

    Unique identifier for the audio media file.

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

    The MIME type of the audio file (e.g., audio/mp3, audio/wav).

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

    The starting timestamp in milliseconds for the relevant audio segment.

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

    The ending timestamp in milliseconds for the relevant audio segment.

    *)
  5. audioExtractionType : AudioExtractionType.t option;
    (*

    The type of audio extraction performed on the content.

    *)
}
Sourceval make : ?mediaId:??? -> ?mediaMimeType:??? -> ?startTimeMilliseconds:??? -> ?endTimeMilliseconds:??? -> ?audioExtractionType:??? -> 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