Module Values.StopTimecodeSource

Settings to identify the end of the clip.

Sourcetype nonrec t = {
  1. lastFrameClippingBehavior : LastFrameClippingBehavior.t option;
    (*

    If you specify a StopTimecode in an input (in order to clip the file), you can specify if you want the clip to exclude (the default) or include the frame specified by the timecode.

    *)
  2. timecode : string option;
    (*

    The timecode for the frame where you want to stop the clip. Optional; if not specified, the clip continues to the end of the file. Enter the timecode as HH:MM:SS:FF or HH:MM:SS;FF.

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