Interface VideoMetadata

Provides metadata for a video, including the start and end offsets for clipping and the frame rate.

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

Properties

endOffset?: string

Optional. The end offset of the video.

fps?: number

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

startOffset?: string

Optional. The start offset of the video.