使用Telethon包发送带有流的视频不起作用

时间:2018-12-12 18:22:47

标签: video-streaming telethon

使用以下代码完成带有Telethon的发送文件:

from telethon.tl.types import DocumentAttributeVideo
client.send_file('username','path')

我想发送具有流支持的视频文件,根据电视节目文档,我必须在attributes中使用参数client object

from telethon.tl.types import DocumentAttributeVideo   
client.send_file('username','path',allow_cache=False,
supports_streaming=True,attributes=(DocumentAttributeVideo(1727,1280,720),))

duration = 1727 width = 1280 height = 720

但是当我上传文件时,它不会被流传输。

0 个答案:

没有答案