2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-29 13:27:47 +00:00

Merge branch 'master' into docs

This commit is contained in:
Dan 2018-02-15 22:03:11 +01:00
commit 121d88f767
2 changed files with 18 additions and 3 deletions

View File

@ -2180,6 +2180,7 @@ class Client:
mime_type=mimetypes.types_map[".mp4"], mime_type=mimetypes.types_map[".mp4"],
attributes=[ attributes=[
types.DocumentAttributeVideo( types.DocumentAttributeVideo(
supports_streaming=i.supports_streaming,
duration=i.duration, duration=i.duration,
w=i.width, w=i.width,
h=i.height h=i.height

View File

@ -53,13 +53,25 @@ class InputMedia:
Video file to send. Video file to send.
Pass a file path as string to send a video that exists on your local machine. Pass a file path as string to send a video that exists on your local machine.
caption (:obj:`str`): caption (:obj:`str`, optional):
Caption of the video to be sent, 0-200 characters Caption of the video to be sent, 0-200 characters
parse_mode (:obj:`str`): parse_mode (:obj:`str`, optional):
Use :obj:`pyrogram.ParseMode.MARKDOWN` or :obj:`pyrogram.ParseMode.HTML` if you want Telegram apps Use :obj:`pyrogram.ParseMode.MARKDOWN` or :obj:`pyrogram.ParseMode.HTML` if you want Telegram apps
to show bold, italic, fixed-width text or inline URLs in your caption. to show bold, italic, fixed-width text or inline URLs in your caption.
Defaults to Markdown. Defaults to Markdown.
width (:obj:`int`, optional):
Video width.
height (:obj:`int`, optional):
Video height
duration (:obj:`int`, optional):
Video duration.
supports_streaming (:obj:`bool`, optional):
Pass True, if the uploaded video is suitable for streaming.
""" """
def __init__(self, def __init__(self,
@ -68,10 +80,12 @@ class InputMedia:
parse_mode: str = "", parse_mode: str = "",
width: int = 0, width: int = 0,
height: int = 0, height: int = 0,
duration: int = 0): duration: int = 0,
supports_streaming: bool = None):
self.media = media self.media = media
self.caption = caption self.caption = caption
self.parse_mode = parse_mode self.parse_mode = parse_mode
self.width = width self.width = width
self.height = height self.height = height
self.duration = duration self.duration = duration
self.supports_streaming = supports_streaming