本文介绍了已超出 Youtube 视频上传限制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用这个 cmd 应用程序 https://github.com/tokland/youtube-upload

I use this cmd application https://github.com/tokland/youtube-upload

上传 50 个视频后,我收到此错误:

After uploading 50 videos i am getting this error:

[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 分钟上传 1 个视频.但在等待 aproximatley 2 小时后,我可以再上传 50 个视频,但并非每次都有效.有时即使等了 3 个小时,我仍然无法上传 50 个视频.

And after this error i can upload 1 video per 15 minutes. But after waiting for aproximatley 2 hours i can upload 50 more videos but it does not work everytime. Sometimes even after waiting for 3 hours i still can't upload 50 videos.

此外,我从未超过我的配额限制.我的配额统计:

Also i never exceeded my quota limit.My quota statistic:

每天查询次数

直到 3 月 20 日我才收到此错误:

Till 20th of march i was getting this error:

{
 "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?

Рow did you solve it? How do you upload videos to youtube in large quantities?

推荐答案

我也收到了同样的信息.这是由于更改了限制那些尝试以垃圾邮件发布视频的人.

I have also received the same message. This is due to changes for limiting those who try to spam-post videos.

来自 Google 的评论人士解释说:

In comment person from Google explains:

感谢您的报告.我可以确认这种行为是有意的;目前您只能上传每天 100 个视频.节流可能会在上传活动爆发后发生.

https://issuetracker.google.com/issues/35919708#comment10

关于节流:

评论16

Fwiw:限制为每天 100 个视频,但您只能上传 50 个视频一次.之后,您必须等待〜15分钟才能上传另一个视频.

评论 17(来自 Google):

comment 17 (Person from Google):

我可以确认#16 是正确的.限制为 100,带速率控制50岁以后.

更新:

根据 this answer 于 2017 年 4 月 3 日(晚于 2017 年 3 月 21 日论坛中的原始评论)来自谷歌代表

As per this answer on April 3rd, 2017 (later than original comments in forum on Mar 21, 2017) from Google representative

我们不再有每天 50 个视频的限制说实话,但是我们有反垃圾邮件算法,可能会暂时暂停您的上传功能.

这篇关于已超出 Youtube 视频上传限制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 11:39