Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1SchemaPredictInstanceVideoObjectTrackingPredictionInstance

import type { GoogleCloudAiplatformV1SchemaPredictInstanceVideoObjectTrackingPredictionInstance } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Prediction input format for Video Object Tracking.

interface GoogleCloudAiplatformV1SchemaPredictInstanceVideoObjectTrackingPredictionInstance {
content?: string;
mimeType?: string;
timeSegmentEnd?: string;
timeSegmentStart?: string;
}

§Properties

§
content?: string
[src]

The Google Cloud Storage location of the video on which to perform the prediction.

§
mimeType?: string
[src]

The MIME type of the content of the video. Only the following are supported: video/mp4 video/avi video/quicktime

§
timeSegmentEnd?: string
[src]

The end, exclusive, of the video's time segment on which to perform the prediction. Expressed as a number of seconds as measured from the start of the video, with "s" appended at the end. Fractions are allowed, up to a microsecond precision, and "inf" or "Infinity" is allowed, which means the end of the video.

§
timeSegmentStart?: string
[src]

The beginning, inclusive, of the video's time segment on which to perform the prediction. Expressed as a number of seconds as measured from the start of the video, with "s" appended at the end. Fractions are allowed, up to a microsecond precision.