我已将视频上传到 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 获取它?