使用以下代码完成带有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
但是当我上传文件时,它不会被流传输。