Module Values.FmtpSource

A set of parameters that define the media stream.

Sourcetype nonrec t = {
  1. channelOrder : String_.t option;
    (*

    The format of the audio channel.

    *)
  2. colorimetry : Colorimetry.t option;
    (*

    The format used for the representation of color.

    *)
  3. exactFramerate : String_.t option;
    (*

    The frame rate for the video stream, in frames/second. For example: 60000/1001.

    *)
  4. par : String_.t option;
    (*

    The pixel aspect ratio (PAR) of the video.

    *)
  5. range : Range.t option;
    (*

    The encoding range of the video.

    *)
  6. scanMode : ScanMode.t option;
    (*

    The type of compression that was used to smooth the video’s appearance.

    *)
  7. tcs : Tcs.t option;
    (*

    The transfer characteristic system (TCS) that is used in the video.

    *)
}
Sourceval make : ?channelOrder:??? -> ?colorimetry:??? -> ?exactFramerate:??? -> ?par:??? -> ?range:??? -> ?scanMode:??? -> ?tcs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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