Source code for pyrogram.types.messages_and_media.voice

#  Pyrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
#  This file is part of Pyrogram.
#
#  Pyrogram is free software: you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  Pyrogram is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public License
#  along with Pyrogram.  If not, see <http://www.gnu.org/licenses/>.

from datetime import datetime

import pyrogram
from pyrogram import raw, utils
from pyrogram.file_id import FileId, FileType, FileUniqueId, FileUniqueType
from ..object import Object


[docs] class Voice(Object): """A voice 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. duration (``int``): Duration of the audio in seconds as defined by sender. waveform (``bytes``, *optional*): Voice waveform. mime_type (``str``, *optional*): MIME type of the file as defined by sender. file_size (``int``, *optional*): File size. date (:py:obj:`~datetime.datetime`, *optional*): Date the voice was sent. ttl_seconds (``int``, *optional*): Time-to-live seconds, for one-time media. """ def __init__( self, *, client: "pyrogram.Client" = None, file_id: str, file_unique_id: str, duration: int, waveform: bytes = None, mime_type: str = None, file_size: int = None, date: datetime = None, ttl_seconds: int = None ): super().__init__(client) self.file_id = file_id self.file_unique_id = file_unique_id self.duration = duration self.waveform = waveform self.mime_type = mime_type self.file_size = file_size self.date = date self.ttl_seconds = ttl_seconds @staticmethod def _parse(client, voice: "raw.types.Document", attributes: "raw.types.DocumentAttributeAudio", ttl_seconds: int = None) -> "Voice": return Voice( file_id=FileId( file_type=FileType.VOICE, dc_id=voice.dc_id, media_id=voice.id, access_hash=voice.access_hash, file_reference=voice.file_reference ).encode(), file_unique_id=FileUniqueId( file_unique_type=FileUniqueType.DOCUMENT, media_id=voice.id ).encode(), duration=attributes.duration, mime_type=voice.mime_type, file_size=voice.size, waveform=attributes.waveform, date=utils.timestamp_to_datetime(voice.date), ttl_seconds=ttl_seconds, client=client )