Animation

class ftmgram.types.Animation(*, client: Client = None, file_id: str, file_unique_id: str, width: int, height: int, duration: int, file_name: str = None, mime_type: str = None, file_size: int = None, date: datetime = None, thumbs: List[Thumbnail] = None)

An animation file (GIF or H.264/MPEG-4 AVC video without sound).

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.

  • width (int) – Animation width as defined by sender.

  • height (int) – Animation height as defined by sender.

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

  • file_name (str, optional) – Animation file name.

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

  • file_size (int, optional) – File size.

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

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

add_to_gifs(unsave: bool = False) bool

Bound method add_to_gifs of Message.

Usable by Users Bots

Use as a shortcut for:

await app.add_to_gifs(message.animation.file_id)
Parameters:

unsave (bool, optional) – Whether to remove the GIF from the list of saved GIFs. Defaults to False.

Returns:

bool – True on success.