5

我已将视频上传到 Google 的 Cloud Storage 存储桶,并在 Video Intelligence API 中引用了他们的 URL。当我尝试获取上传视频的视频时长时,Video Intelligence API 不返回任何内容。

这是我使用的代码:

require "google/cloud/video_intelligence"

video_intelligence_client = Google::Cloud::VideoIntelligence.new
features_element = :LABEL_DETECTION
features = [features_element]

operation = video_intelligence_client.annotate_video input_uri: input_uri, features: features
p "PROCESSING......"
p operation
raise operation.results.message? if operation.error?

operation.wait_until_done!
metadata = operation.metadata
puts metadata

是否可以使用 Video Intelligence API 获取视频时长?或者,我应该如何从 Google Cloud Storage API 获取它?

4

1 回答 1

0
  1. Video Intelligence API 不计算视频时长。您可以在API Explorer中检查可用的方法
  2. Google Cloud Storage 以相同的方式处理任何类型的内容(视频、音乐、zip 文件、文档等),因此您必须将其计算并存储为自定义元数据等。
  3. 如果不知道上传时长,可以在上传完成后自动触发的云函数中计算。
于 2019-08-15T09:56:26.533 回答