2015-07-08 14:17:18 +02:00
|
|
|
#!/usr/bin/env python
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2018-01-04 16:16:06 +01:00
|
|
|
# Copyright (C) 2015-2018
|
2016-01-05 14:12:03 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2016-10-17 00:22:40 +02:00
|
|
|
"""This module contains an object that represents a Telegram Video."""
|
2015-07-08 14:17:18 +02:00
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
from telegram import PhotoSize, TelegramObject
|
2015-07-09 16:40:44 +02:00
|
|
|
|
|
|
|
|
2015-07-20 04:06:04 +02:00
|
|
|
class Video(TelegramObject):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This object represents a video file.
|
2015-08-22 04:15:29 +02:00
|
|
|
|
|
|
|
Attributes:
|
2017-07-23 22:33:08 +02:00
|
|
|
file_id (:obj:`str`): Unique identifier for this file.
|
|
|
|
width (:obj:`int`): Video width as defined by sender.
|
|
|
|
height (:obj:`int`): Video height as defined by sender.
|
|
|
|
duration (:obj:`int`): Duration of the video in seconds as defined by sender.
|
|
|
|
thumb (:class:`telegram.PhotoSize`): Optional. Video thumbnail.
|
|
|
|
mime_type (:obj:`str`): Optional. Mime type of a file as defined by sender.
|
|
|
|
file_size (:obj:`int`): Optional. File size.
|
2018-02-18 16:49:52 +01:00
|
|
|
bot (:class:`telegram.Bot`): Optional. The Bot to use for instance methods.
|
2015-08-22 04:15:29 +02:00
|
|
|
|
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
file_id (:obj:`str`): Unique identifier for this file.
|
|
|
|
width (:obj:`int`): Video width as defined by sender.
|
|
|
|
height (:obj:`int`): Video height as defined by sender.
|
|
|
|
duration (:obj:`int`): Duration of the video in seconds as defined by sender.
|
|
|
|
thumb (:class:`telegram.PhotoSize`, optional): Video thumbnail.
|
|
|
|
mime_type (:obj:`str`, optional): Mime type of a file as defined by sender.
|
|
|
|
file_size (:obj:`int`, optional): File size.
|
2018-02-18 16:49:52 +01:00
|
|
|
bot (:class:`telegram.Bot`, optional): The Bot to use for instance methods.
|
2017-07-23 22:33:08 +02:00
|
|
|
**kwargs (:obj:`dict`): Arbitrary keyword arguments.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
"""
|
|
|
|
|
2016-10-16 16:24:13 +02:00
|
|
|
def __init__(self,
|
|
|
|
file_id,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
duration,
|
|
|
|
thumb=None,
|
2016-12-30 13:57:59 +01:00
|
|
|
mime_type=None,
|
2017-01-11 19:41:39 +01:00
|
|
|
file_size=None,
|
2018-02-18 16:49:52 +01:00
|
|
|
bot=None,
|
2016-10-16 16:24:13 +02:00
|
|
|
**kwargs):
|
2015-08-22 04:15:29 +02:00
|
|
|
# Required
|
2015-09-07 20:53:09 +02:00
|
|
|
self.file_id = str(file_id)
|
2015-08-22 04:15:29 +02:00
|
|
|
self.width = int(width)
|
|
|
|
self.height = int(height)
|
|
|
|
self.duration = int(duration)
|
|
|
|
# Optionals
|
2016-10-16 16:24:13 +02:00
|
|
|
self.thumb = thumb
|
2017-01-09 19:16:28 +01:00
|
|
|
self.mime_type = mime_type
|
2017-01-11 19:41:39 +01:00
|
|
|
self.file_size = file_size
|
2018-02-18 16:49:52 +01:00
|
|
|
self.bot = bot
|
2015-07-08 14:17:18 +02:00
|
|
|
|
2017-05-14 23:29:31 +02:00
|
|
|
self._id_attrs = (self.file_id,)
|
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
@classmethod
|
|
|
|
def de_json(cls, data, bot):
|
2015-08-22 04:15:29 +02:00
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
data = super(Video, cls).de_json(data, bot)
|
2016-12-19 23:07:35 +01:00
|
|
|
|
2016-09-20 06:36:55 +02:00
|
|
|
data['thumb'] = PhotoSize.de_json(data.get('thumb'), bot)
|
2015-09-04 23:50:26 +02:00
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
return cls(bot=bot, **data)
|
|
|
|
|
|
|
|
def get_file(self, timeout=None, **kwargs):
|
|
|
|
"""Convenience wrapper over :attr:`telegram.Bot.get_file`
|
|
|
|
|
|
|
|
Args:
|
|
|
|
timeout (:obj:`int` | :obj:`float`, optional): If this value is specified, use it as
|
|
|
|
the read timeout from the server (instead of the one specified during creation of
|
|
|
|
the connection pool).
|
|
|
|
**kwargs (:obj:`dict`): Arbitrary keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.File`
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
:class:`telegram.TelegramError`
|
|
|
|
|
|
|
|
"""
|
|
|
|
return self.bot.get_file(self.file_id, timeout=timeout, **kwargs)
|