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
0
votes
2 answers

Why output from google video intelligence not in JSON format

I have been trying to use the google video intelligence API from https://cloud.google.com/video-intelligence/docs/libraries and I tried the exact same code. The response output was supposed to be in json format however the output was either a…
nam
  • 116
  • 1
  • 10
0
votes
1 answer

Google Video Intelligence operation

I tried the demo at https://cloud.google.com/video-intelligence/ If I switch to the API tab I can see the request…
0
votes
1 answer

Is video intelligence API of google cloud service available for android?

I couldn't find any SDK for Google cloud video intelligence API. If there is only REST API support then how can we upload video in REST API? Searched a lot on google documentation, didn't find the proper implementation for android apps
0
votes
2 answers

Google Cloud Video Intelligence Api - Path Error(Syntax) for Local video files

On providing a local path to the Google Cloud Video Intelligence Api for a Video file to be processed for labels (CODE),it gave a syntax error.All relevant files are stored in the same folder.Which other possible syntax can be used or does one have…
srt111
  • 1,079
  • 11
  • 20
0
votes
1 answer

Handling Long Running Task in Cloud Function - Google Cloud Video Intelligence API

We're currently using the cloud intelligence api for tracking objects in videos, but this may take > 10 minutes for large videos. I'm curious if there is any functionality with Google Cloud products to publish to a pub/sub queue of sorts after a job…
njho
  • 2,023
  • 4
  • 22
  • 37
0
votes
1 answer

AutoML Video Inteligence with custom labels - true negatives in training data

This question pertains to AutoML for Video Intelligence (custom labels). When setting up training data, you are instructed to only label videos with your custom labels in them (and not videos that don’t have that label). How does the model train to…
CCC
  • 1
  • 1
0
votes
2 answers

Google Videointelligence API - sending multiple files to analysis

I would like to use the Google Videointelligence API (Speech detection, object detection) and process approx. 100 videos which are stored on Google Cloud Storage. Each video has an approximate length of 1min. I do not want to process them…
Andi Maier
  • 914
  • 3
  • 9
  • 28
0
votes
1 answer

Missing elements for a Google Cloud Video Annotation request

I am trying to run annotation on a video using the Google Cloud Video Intelligence API. Annotation requests with just one feature request (i.e., one of "LABEL_DETECTION", "SHOT_CHANGE_DETECTION" or "EXPLICIT_CONTENT_DETECTION"), things work fine.…
0
votes
2 answers

video intelligence livestream

I am new to the Video Intelligence API, but in my project, I am presented with the challenge of taking a video feed and running it through the video intelligence API then screenshotting it each scene change and reading text from those screenshots…
0
votes
1 answer

Calling the rest video intelligence API in JAVA

I've been trying to call the rest API of video intelligence through a java program to annotate a local file. Here is my code: byte[] data = Files.readAllBytes(path); byte[] encodedBytes = Base64.encodeBase64(data); …
0
votes
2 answers

can we get list of video formats / codecs supported by Google Cloud video intelligence API

Can you please help with list of video formats and codecs that are supported by Google Cloud Video Intelligence API
Tarun
  • 517
  • 4
  • 9
  • 24
0
votes
1 answer

Has anyone been able to access the video transcription feature in Google Cloud's Video Intelligence API?

This four-month-old press release seems to indicate that the feature is publicly available, The product page mentions the feature, but labels it in an alpha state, and The documentation doesn't mention the feature at all... Anyone have any leads…
carpiediem
  • 1,918
  • 22
  • 41
0
votes
1 answer

Google Cloud Video intelligence and embedded video content

Does Google Cloud Video intelligence work with embedded video content from Vimeo or YouTube. Will it be able to create tags, see faces etc... since the content is not directly uploaded?
0
votes
1 answer

where to store request.json file

I am trying out Google video intelligent api by following the quick start guide here. I am using cloud shell to run all the codes. In the guide, to make an annotate video request, I need to create a request.json file. Where to put this file once…
Christy
  • 83
  • 6
0
votes
2 answers

Google Video Intelligence API query

I am trying to implement VideoIntelligence API in my 'personal-project'. but I am not able to do so. [I have the access permissions for VideoIntelligence API for my personal-project] Please provide some suggestions to make it work. I tried the…