VideoNote

class ftmgram.types.VideoNote(*, client: Client = None, file_id: str, file_unique_id: str, length: int, duration: int, thumbs: List[Thumbnail] = None, mime_type: str = None, file_size: int = None, date: datetime = None, ttl_seconds: int = None)

A video note.

Parameters:
  • file_id (str) – Identifier for this file, which can be used to download or reuse the file.

  • file_unique_id (str) – Unique identifier for this file, which is supposed to be the same over time and for different accounts. Can’t be used to download or reuse the file.

  • length (int) – Video width and height as defined by sender.

  • duration (int) – Duration of the video in seconds as defined by sender.

  • mime_type (str, optional) – MIME type of the file as defined by sender.

  • file_size (int, optional) – File size.

  • date (datetime, optional) – Date the video note was sent.

  • ttl_seconds (int, optional) – Time-to-live seconds, for one-time media.

  • thumbs (List of Thumbnail, optional) – Video thumbnails.