Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以创建一个谷歌云函数,每次我将视频上传到存储桶时都会执行视频智能注释请求?
是的:
为所需存储桶创建带有存储触发器的云函数
在 Cloud Function 中,检查上传的文件是否为视频
使用视频智能客户端库,使用您刚刚上传到存储桶的文件发出请求
@Guillerno 的回答并不完全正确。例如,如果视频文件在高清分辨率下超过 1 小时,则最高 540 秒的 Google Function 超时将不足以让 Video Intelligence 分析内容,这将简单地超时。
实现此目的的唯一方法是创建一个具有几个小时超时的 Google App Flex 引擎,并在该实例中执行 AnnotateVideo 函数。
对于长视频,Cloud Function 将不是 Video Intelligence 的解决方案。