Vis*_*u U 7 python-telegram-bot
我想通过API发送视频,有发送文本、图像、音频和文档的功能。有没有发送视频的功能或者我应该使用此功能来发送视频吗?
bot.send_document(chat_id=chat_id, document=open('tests/test.zip', 'rb'))
有更简单/更正确的方法吗?
小智 5
与文档相同
bot.send_video(chat_id=update.message.chat_id, video=open('output.mp4', 'rb'), supports_streaming=True)
Run Code Online (Sandbox Code Playgroud)
send_document有时可以将视频作为实际文档文件发送,在 TG 中无法播放
send_video将始终发送可在 TG 中播放的视频,并且传递supports_streaming=True将使 TG 允许在下载之前进行流式传输。
有关更多参考资料send_video和其他内容,send_*您可以查看
https://github.com/python-telegram-bot/python-telegram-bot/blob/master/telegram/bot.py
为避免发送超时使用updater = Updater(token='TOKEN', request_kwargs={'read_timeout': 1000, 'connect_timeout': 1000})
| 归档时间: |
|
| 查看次数: |
19090 次 |
| 最近记录: |