Interface InputPaidMediaTypeVideo

The media is a video. Subtype of InputPaidMediaType.

interface InputPaidMediaTypeVideo {
    @type: "inputPaidMediaTypeVideo";
    cover: InputFile;
    duration: number;
    start_timestamp: number;
    supports_streaming?: boolean;
}

Properties

@type: "inputPaidMediaTypeVideo"
cover: InputFile

Cover of the video; pass null to skip cover uploading.

duration: number

Duration of the video, in seconds.

start_timestamp: number

Timestamp from which the video playing must start, in seconds.

supports_streaming?: boolean

True, if the video is expected to be streamed.