InputMediaAudio#

class pyrogram.types.InputMediaAudio#

An audio to be sent inside an album.

It is intended to be used with send_media_group().

Parameters:
  • media (str | BinaryIO) – Audio to send. Pass a file_id as string to send an audio that exists on the Telegram servers or pass a file path as string to upload a new audio 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 an audio file from the Internet.

  • thumb (str, optional) – Thumbnail of the music file album cover. 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.

  • caption (str, optional) – Caption of the audio to be sent, 0-1024 characters. If not specified, the original caption is kept. Pass “” (empty string) to remove the caption.

  • parse_mode (ParseMode, optional) – By default, texts are parsed using both Markdown and HTML styles. You can combine both syntaxes together.

  • caption_entities (List of MessageEntity) – List of special entities that appear in the caption, which can be specified instead of parse_mode.

  • duration (int, optional) – Duration of the audio in seconds

  • performer (str, optional) – Performer of the audio

  • title (str, optional) – Title of the audio