批量上传到 YouTube - ASP.NET 4 C#
我尝试寻找批量上传到 YouTube 的最佳方法,但我只找到了将单个视频上传到 YouTube 的方法(这很好,但不是我的情况)。
我想知道将多个视频上传到 YouTube 的最佳方法。我在这里注意到:
它需要分散,这样你就不会达到配额。但是,我注意到此处可以使用批处理:
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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要在上传视频之间等待。 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.