Module Values.Id3InsertionSource

To insert ID3 tags in your output, specify two values. Use ID3 tag to specify the base 64 encoded string and use Timecode to specify the time when the tag should be inserted. To insert multiple ID3 tags in your output, create multiple instances of ID3 insertion.

Sourcetype nonrec t = {
  1. id3 : string option;
    (*

    Use ID3 tag to provide a fully formed ID3 tag in base64-encode format.

    *)
  2. timecode : string option;
    (*

    Provide a Timecode in HH:MM:SS:FF or HH:MM:SS;FF format.

    *)
}
Sourceval make : ?id3:??? -> ?timecode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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