MediaProcessing

Fields
type Union type
The following is a list of mutually exclusive fields. At most one of the fields will be set in a response:
static object (StaticMediaProcessing)
End of mutually exclusive fields.
JSON representation
{

  // type
  "static": {
    object (StaticMediaProcessing)
  }
  // Union type
}

StaticMediaProcessing

Fields
startOffset string (Duration format)

Optional. Segment start time. Specified as a decimal number of seconds followed by an 's' suffix, e.g., "10.5s". Must be non-negative.

A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".

endOffset string (Duration format)

Optional. Segment end time. Specified as a decimal number of seconds followed by an 's' suffix, e.g., "30s". Must be non-negative and greater than startOffset if startOffset is set.

A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".

fps number

Optional. Video frame-rate sampling density.

JSON representation
{
  "startOffset": string,
  "endOffset": string,
  "fps": number
}