tweepy 上的视频上传
video upload on tweepy
我试图只用一个视频来更新我自己的状态,但由于某种原因,它不起作用。全部为小于1MB的.mp4.
当我尝试 upload_result = api.media_upload('file.mp4')
时,它引发 TweepError
说无法确定文件类型。
当我尝试 upload_result = api.media_upload(filename = "path of the file", file = "file.mp4")
时,它会触发 [Errno13],提示“权限被拒绝”
我的 IDE 是 Pycharm 社区版,我使用的是 python 3.9
如需完整代码,请在评论中索取
根据Tweepy documentation你只能上传图片
Use this endpoint to upload images to Twitter.
目前不支持上传视频,有一个未解决的问题,所以可能会在某个时候出现。
我试图只用一个视频来更新我自己的状态,但由于某种原因,它不起作用。全部为小于1MB的.mp4.
当我尝试 upload_result = api.media_upload('file.mp4')
时,它引发 TweepError
说无法确定文件类型。
当我尝试 upload_result = api.media_upload(filename = "path of the file", file = "file.mp4")
时,它会触发 [Errno13],提示“权限被拒绝”
我的 IDE 是 Pycharm 社区版,我使用的是 python 3.9
如需完整代码,请在评论中索取
根据Tweepy documentation你只能上传图片
Use this endpoint to upload images to Twitter.
目前不支持上传视频,有一个未解决的问题,所以可能会在某个时候出现。