Questions tagged [video-intelligence-api]

Google Cloud Video Intelligence API makes videos searchable, and discoverable, by extracting metadata with an easy to use REST API.

Google Cloud Video Intelligence API makes videos searchable, and discoverable, by extracting metadata with an easy to use REST API. You can now search every moment of every video file in your catalog and find every occurrence as well as its significance. It quickly annotates videos stored in Google Cloud Storage, and helps you identify key nouns entities of your video, and when they occur within the video. Separate signal from noise, by retrieving relevant information at the video, shot or per frame.

81 questions
6
votes
1 answer

How to get video duration for a video present in Google Cloud Storage

I have uploaded a video to Google's Cloud Storage bucket and referenced their URL in the Video Intelligence API. When I tried to get the video duration of the uploaded video, Video Intelligence API doesn't return anything. This is the code I…
5
votes
2 answers

Permission Denied When Making Request to GCP Video Intelligence API

so I am able to make a valid request to the video intelligence api with the sample video given in the quickstart. https://cloud.google.com/video-intelligence/docs/getting-started I have tried many different ways of authenticating to the api as well.…
joshkurz
  • 1,033
  • 7
  • 12
4
votes
1 answer

Video Intelligence: Caller does not have permission

Using the following code on JupyterLab in order to run Google Video Intelligence Package: from google.cloud import videointelligence import os client =…
3
votes
1 answer

mongoose Error: cyclic dependency detected

I wrote a service that analyses videos with Google Cloud Video Intelligence And I save the analysis results to the MongoDB with mongoose This is the model I use (I've simplified everything to avoid confusion): // Video.js const mongoose =…
Murat Colyaran
  • 2,075
  • 2
  • 8
  • 27
3
votes
0 answers

How to save google cloud object-tracking video?

Currently working my way through the google cloud video intelligence API -tutorial here: https://cloud.google.com/video-intelligence/docs/object-tracking The output gives me details on the bounding boxes, however, it does not actually save any video…
2
votes
1 answer

Google cloud video intelligence API samples for ruby

I am using google-cloud-ruby client library, I don't see any samples related to current implementation of google cloud video intelligence API. From where should I look out code samples of google cloud video intelligence API for ruby client library.
Pez
  • 1,091
  • 2
  • 14
  • 34
2
votes
0 answers

Error while importing google cloud videintelligence: ImportError: cannot import name 'init_grpc_aio' from 'grpc._cython.cygrpc'

i'm trying to run: from google.cloud import videointelligence and i get the following error: from grpc._cython.cygrpc import (init_grpc_aio, shutdown_grpc_aio, EOF, ImportError: cannot import name 'init_grpc_aio'…
2
votes
3 answers

Which Google Cloud product to use to execute a very long process Google Cloud VideoIntelligence Analysis

I have been using Google Cloud Video Intelligence annotation functionality with Google App Engine Flex. When I try to use VideoIntelligence with a two hour video, it takes 60 minutes for the AnnotateVideo function to respond. gs_video_path…
2
votes
2 answers

Cannot install google-cloud-videointelligence

I have an error, when I install google-cloud-video intelligence. ERROR: Could not install packages due to an Environment Error: [Errno 2] No such file or directory:…
Ulrich Eul
  • 21
  • 3
2
votes
2 answers

Google Cloud Functions - Video intelligence

Would it be possible to create a Google Cloud Function that would do a video intelligence annotate request every time I upload a video into a bucket?
2
votes
0 answers

Is there a video size limitation for local files in the Google Cloud Video Intelligence API?

I am thinking about integrating the Google Video Intelligence API for automatic labeling of my videos. If possible I do not want to use Google Cloud Storage for this issue. Is there a limitation of video file size when making requests for locally…
Sebastian
  • 31
  • 3
2
votes
1 answer

Can video-intelligence-api send the output to a pub/sub topic

Is it possible to have the Video Intelligence API respond on a pub/sub topic? It makes no sense to have a cloud function (or something else) waiting for minutes until the video processing operation completes. The documentation says you can specify…
1
vote
1 answer

Google Cloud Video Intelligence Annotate Video node js example

I just copy and paste from this documentation. But somehow, I'm getting typescript error on my code. See error message on my code base. and here is the code example. const videoContext = { speechTranscriptionConfig: { languageCode:…
1
vote
0 answers

Google video intelligence service in php error

Im trying to get labels from a YouTube video with google video intelligence in PHP This is my code require __DIR__ . '/vendor/autoload.php'; use Google\Cloud\VideoIntelligence\V1\VideoIntelligenceServiceClient; use…
1
vote
1 answer

GCP Video Intelligence API Object Tracking

I've used the Video Intelligence API to do object tracking on video. In the document [1], it recognizes more than 20,000 objects, places, and actions in stored and streaming video. I have a questions. Is there any document that shows what kind of…
Tim Chiang
  • 374
  • 1
  • 10
1
2 3 4 5 6