InputStoryContentVideo#
- class pyrogram.types.InputStoryContentVideo#
Describes a video to post as a story.
It is intended to be used with
send_story
orpost_story
.- Parameters:
video (
str
|io.BytesIO
) – File to send. Pass a file_id as string to send a video that exists on the Telegram servers or pass a file path as string to upload a new video that exists on your local machine or pass a binary file-like object with its attribute “.name” set for in-memory uploads or pass an HTTP URL as a string for Telegram to get a video from the Internet.duration (
int
, optional) – Precise duration of the video in seconds; 0-60.cover_frame_timestamp (
int
, optional) – Timestamp in seconds of the frame that will be used as the static cover for the story. Defaults to 0.0.is_animation (
bool
, optional) – Pass True if the video has no sound.width (
int
, optional) – Video width.height (
int
, optional) – Video height.thumbnail (
str
|io.BytesIO
) – Thumbnail of the video sent. The thumbnail should be in JPEG format and less than 200 KB in size. A thumbnail’s width and height should not exceed 320 pixels. Thumbnails can’t be reused and can be only uploaded as a new file.supports_streaming (
bool
, optional) – Pass True, if the uploaded video is suitable for streaming.file_name (
str
, optional) – File name of the video sent. Defaults to file’s path basename.