See: Description
Class | Description |
---|---|
VideoIntelligenceServiceClient |
Service Description: Service that implements Google Cloud Video Intelligence API.
|
VideoIntelligenceServiceSettings |
Settings class to configure an instance of
VideoIntelligenceServiceClient . |
VideoIntelligenceServiceSettings.Builder |
Builder for VideoIntelligenceServiceSettings.
|
The interfaces provided are listed below, along with usage samples.
============================== VideoIntelligenceServiceClient ==============================
Service Description: Service that implements Google Cloud Video Intelligence API.
Sample for VideoIntelligenceServiceClient:
try (VideoIntelligenceServiceClient videoIntelligenceServiceClient = VideoIntelligenceServiceClient.create()) {
String inputUri = "gs://demomaker/cat.mp4";
Feature featuresElement = Feature.LABEL_DETECTION;
List<Feature> features = Arrays.asList(featuresElement);
AnnotateVideoResponse response = videoIntelligenceServiceClient.annotateVideoAsync(inputUri, features);
}
Copyright © 2019 Google LLC. All rights reserved.