Interface VideoMetadata

Describes how the video in the Part should be used by the model.

interface VideoMetadata {
    endOffset?: string;
    fps?: number;
    startOffset?: string;
}

Properties

endOffset?: string

Optional. The end offset of the video.

fps?: number

The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0].

startOffset?: string

Optional. The start offset of the video.