批量上传到 YouTube - ASP.NET 4 C#

发布于 2024-10-22 02:16:19 字数 784 浏览 1 评论 0原文

我尝试寻找批量上传到 YouTube 的最佳方法,但我只找到了将单个视频上传到 YouTube 的方法(这很好,但不是我的情况)。

我想知道将多个视频上传到 YouTube 的最佳方法。我在这里注意到:

http://code.google.com/apis/youtube /2.0/developers_guide_protocol.html#Uploading_large_batch_of_videos

它需要分散,这样你就不会达到配额。但是,我注意到此处可以使用批处理:

http://code。 google.com/apis/youtube/2.0/developers_guide_dotnet.html#Batch_processing

是否可以使用 request.Batch 调用创建批量上传到 YouTube 的功能?或者是循环播放要上传的视频并一次上传一个的唯一方法(每个视频之间有 3-5 分钟的延迟)?有人这样做过并且可以提供一些支持吗?如果已经讨论过这个问题,请告诉我在哪里,并接受我对在搜索中没有找到它的歉意。

谢谢, 麦克风

I've tried searching for the best method of doing batch uploads to YouTube but I've only found methods for uploading a single video to YouTube (which is fine, but not my situation).

I'd like to know the best method of uploading multiple videos to YouTube. I noticed here:

http://code.google.com/apis/youtube/2.0/developers_guide_protocol.html#Uploading_large_batch_of_videos

That it needs to be spread out so you don't reach the quota. However, I noticed that Batch Processing is available here:

http://code.google.com/apis/youtube/2.0/developers_guide_dotnet.html#Batch_processing

Is it possible to create a batch upload to YouTube using the request.Batch call? Or is the only method to loop through the videos to be uploaded and upload them one at a time (given a 3-5 minute delay between each one)? Has anyone done this and can offer some support? If this is already discussed please let me know where and accept my apologies for not finding it in my search.

Thanks,
Mike

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲凉≈ 2024-10-29 02:16:19

看起来您需要在上传视频之间等待。 request.Batch 调用用于对提要执行多项操作,例如播放列表或用户的收藏夹列表。您不能使用它来上传视频。

It looks like you need to wait between uploading videos. The request.Batch call is for doing multiple operations on a feed, such as a playlist, or a user's favorites list. You can't use it for uploading videos.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文