我使用这个cmd应用程序https://github.com/tokland/youtube-upload。
上传了50段视频后,我得到了以下错误:
[RequestError] Server response: {
"error": {
"errors": [
{
"domain": "youtube.video",
"reason": "uploadLimitExceeded",
"message": "The user has exceeded the number of videos they may upload."
}
],
"code": 400,
"message": "The user has exceeded the number of videos they may upload."
}
}
在这个错误发生后,我可以每15分钟上传一段视频。但在等待了近两个小时后,我可以上传50多个视频,但它不工作的每一次。有时候,即使等了3个小时,我还是不能上传50个视频。
而且,我从来没有超过我的配额限制。我的配额统计:
直到3月20日,我才发现这个错误:
{
"error": {
"errors": [
{
"domain": "youtube.common",
"reason": "forbidden",
"message": "Access forbidden. The request may not be properly authorized."
}
],
"code": 403,
"message": "Access forbidden. The request may not be properly authorized."
}
}
Р你是怎么解决的?如何将大量视频上传到youtube上?
发布于 2018-08-20 14:17:11
我也收到了同样的信息。这是由于限制那些试图发送垃圾邮件视频的人而改变的。
在评论中,谷歌的人士解释道:
谢谢你的报告。我可以确认这种行为是有意的;目前,您仅限于每天上传100段视频。在上传活动爆发后可能会发生节流。
https://issuetracker.google.com/issues/35919708#comment10
关于节流:
Fwiw:限制是每天100个视频,但你可以一次上传50个视频。在此之后,你必须等待15分钟才能上传另一段视频。
评论17 (来自谷歌的人):
我可以确认16号是正确的。限值为100,50后的速率控制。
更新:
据这个答案于2017年4月3日(迟于2017年3月21日论坛的原始评论)来自谷歌的代表
我们没有任何限制每天50视频说实话,但我们有反垃圾邮件算法,可能暂时暂停您的上传功能。
https://stackoverflow.com/questions/43078858
复制相似问题