VideoPayload

Container of information of a video.

JSON representation
{
  "mimeType": string,
  "videoUri": string,
  "videoThumbnails": [
    {
      object (VideoThumbnail)
    }
  ],
  "frameRate": number,
  "signedUri": string
}
Fields
mimeType

string

Video format.

videoUri

string

Video uri from the user bucket.

videoThumbnails[]

object (VideoThumbnail)

The list of video thumbnails.

frameRate

number

FPS of the video.

signedUri

string

Signed uri of the video file in the service bucket.

VideoThumbnail

Container of information of a video thumbnail.

JSON representation
{
  "thumbnail": string,
  "timeOffset": string
}
Fields
thumbnail

string (bytes format)

A byte string of the video frame.

A base64-encoded string.

timeOffset

string (Duration format)

Time offset relative to the beginning of the video, corresponding to the video frame where the thumbnail has been extracted from.

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