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
1
vote
1 answer

Error in Request to Google Video Intelligence API

I have been trying to send a request to the Google Video Intelligence API for SAFE_SEARCH_DETECTION (in node.js), but I keep running into the same error: ERROR: { Error: Request contains an invalid argument. at…
1
vote
2 answers

google video intelligence python tutorial : where to place credential key.json?

I have forked python - doc - sample https://github.com/aliwo/python-docs-samples and I'm trying to learn .py file below. python-docs-samples\video\cloud-client\labels\labels.py error message occured: google.auth.exceptions.DefaultCredentialsError:…
Jerry
  • 399
  • 1
  • 2
  • 17
0
votes
2 answers

Google cloud video intelligence can't annotate multiple features

I've been using Google Cloud Video Intelligence for text detection. Now, I want to use it for speech transcription so I added SPEECH_TRANSCRIPTION feature to TEXT_DETECTION but the response only contains result for one feature, the last one. const…
0
votes
0 answers

Getting minimal response when using dynamic URL and getting full response when using static URL

I am using Google Cloud Video Intelligence API to fetch the details from the video. I am sending the video as base64 in the body to the cloud with the API…
0
votes
0 answers

Is there a support (including preview/beta) for Automl Streaming video classification feature in GCP? any sample API or client reference please

As I've a requirement to do custom model (Automl) using video classification feature for a streaming video data. I'm looking for a GCP support include preview or beta/alpha feature support. Can anyone help me does GCP supports this currently and can…
0
votes
0 answers

Get realtime VideoIntelligence API usage in minutes?

How can I see the near real time minutes of usage for VideoIntelligence API features? If I look in GCP Billing, I can see the minutes of usage for each SKU. For example: SKU: Label Detection Usage: 59.5 minutes However, these metrics only appear…
ProGirlXOXO
  • 2,170
  • 6
  • 25
  • 47
0
votes
1 answer

google-cloud-videointelligence - TimeoutError start Oct 5

I started to get: concurrent.futures._base.TimeoutError: Operation did not complete within the designated timeout. (even for a 5 sec videos & I have timeout=1000) It started on Oct 5 (before that it work great for months). What I use: python:3.8.7…
0
votes
0 answers

Report Incorrect Classifications

What is the best way to report high confidence incorrect classifications from Google Video Intelligence API? For example one of our submitted videos has a logo that is 87% confidence but misclassified as the wrong organization throughout a majority…
ProGirlXOXO
  • 2,170
  • 6
  • 25
  • 47
0
votes
2 answers

Google Cloud Video Intelligence Annotate Video JSON vs example code

Google Cloud Video Intelligence provides the following code for parsing annotation results with object tracking: features = [videointelligence.Feature.OBJECT_TRACKING] context = videointelligence.VideoContext(segments=None) request =…
london_utku
  • 1,070
  • 2
  • 16
  • 36
0
votes
1 answer

How are Speech-to-Text and Video Intelligence SPEECH_TRANSCRIPTION related?

My goal is to process several videos using a speech-to-text model. Google confusingly has two products that seem to do the same thing. What are the major differences between these offering? Google Cloud Speech-to-Text:…
0
votes
1 answer

Google Cloud VideoIntelligence Speech Transcription - Transcription Size

I use Google Cloud Speech Transcription as following : video_client = videointelligence.VideoIntelligenceServiceClient() features = [videointelligence.enums.Feature.SPEECH_TRANSCRIPTION] operation = video_client.annotate_video(gs_video_path,…
0
votes
1 answer

Google Cloud Speech Transcription for Video Intelligence

I intend to use Google Cloud Speech Transcription for Video Intelligence. The following code only analysis for a partial segment of the video. video_uri = "gs://cloudmleap/video/next/JaneGoodall.mp4" language_code = "en-GB" segment =…
0
votes
1 answer

Google Cloud Video Intelligence

Below it says in Google Cloud documentation : Annotating a video using Shot Change detection This tutorial walks you through a basic Video API application, using a SHOT_CHANGE_DETECTION request. A SHOT_CHANGE_DETECTION request provides the…
london_utku
  • 1,070
  • 2
  • 16
  • 36
0
votes
1 answer

Google Cloud Video Intelligence Speech Transcription

I try to use Speech Transcription via Video Inteligence, however I get the following error : input_uri: "/supereye1.appspot.com/video/8rsxVe23pzQ/videofile.mp4" error { code: 3 message: "Invalid SpeechTranscription request…
0
votes
1 answer

Google Cloud Function - Video Intelligence

I know how to trigger a video intelligence request for object tracking / object detection with Google Cloud as following : video_client = videointelligence.VideoIntelligenceServiceClient() features =…