api - Youtube API 每天最大视频上传次数

标签 api youtube upload limit

我们正在构建一个具有视频上传功能的应用程序。我们想知道是否可以使用 Youtube 帐户上传我们所有的用户视频。它们应该只能通过我们的应用程序访问......我们不介意在查看它们时是否显示广告。

如果应用程序增长,我们预计每天可能会上传数千次。

Youtube 支持吗?如果一些视频被标记,“主”帐户会被关闭吗?

最后,如果 Youtube 不是正确的选择,您有什么建议吗?我们希望尽可能避免托管它们......因为流式传输大量视频对于初创公司来说是一个巨大的挑战。

谢谢!

最佳答案

关于视频上传的一些信息:
https://developers.google.com/youtube/v3/docs/videos/insert

This method supports media upload. Uploaded files must conform to these constraints: Maximum file size: 128GB Accepted Media MIME types: video/*, application/octet-stream



您可以在此处获取配额信息:https://developers.google.com/youtube/v3/getting-started#quota

Projects that enable the YouTube Data API have a default quota allocation of 1 million units per day, an amount sufficient for the overwhelming majority of our API users.



...

Different types of operations have different quota costs.

A simple read operation that only retrieves the ID of each returned resource has a cost of approximately 1 unit. A write operation has a cost of approximately 50 units. A video upload has a cost of approximately 1600 units.



是的,youtube 可以阻止 API 访问,不仅可以阻止被标记的视频,还可以随时按照此处的描述阻止 API 访问:https://developers.google.com/youtube/terms/api-services-terms-of-service#termination

24.2 Termination by YouTube. Notwithstanding anything to the contrary, YouTube reserves the right to (i) suspend or terminate access to, or use of, any aspects of the YouTube API Services by you, your API Client(s) and those acting on your behalf), and (ii) terminate the Agreement (or any portion thereof), as applied to any specific user or API Client, category of users or API Clients, or all users or API Clients at any time. For example, we may need to exercise such rights in instances of your breach of this Agreement, court order, when we believe there to have been misconduct or conduct which may create potential liability for YouTube or its Affiliates. Although we will try to give you reasonable notice, we have no obligation to do so.

关于api - Youtube API 每天最大视频上传次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48235222/

相关文章:

javascript - xxx.replace() 无法正常工作

api - 使用 tfl 数据 api - 教程?

iframe - 如何嵌入带有 cookie 同意控制的 Youtube iframe?

php - json_decode无法解码字符串

php - 谁能给我一个 PHP 的 CURLFile 类的例子?

c - 帮忙找c api

linux - 多场景多参数测试

android - 在 Android 的 YouTubeStandalonePlayer 上禁用 youtube 图标?

google-chrome-extension - 无法将应用上传到 Chrome 网上应用店 - "This item is not an app, please remove app section from manifest."

HTML:是否可以在拖放文件上传后创建弹出窗口?