@@ -35,6 +35,7 @@ This client supports the following Google Cloud Platform services at an [Alpha](
3535- [ Cloud Resource Manager] ( #google-cloud-resource-manager-alpha ) (Alpha)
3636- [ Cloud Speech] ( #google-cloud-speech-alpha ) (Alpha)
3737- [ Cloud Trace] ( #google-cloud-trace-alpha ) (Alpha)
38+ - [ Cloud Video Intelligence] ( #google-cloud-video-intelligence-alpha ) (Alpha)
3839
3940> Note: This client is a work-in-progress, and may occasionally
4041> make backwards-incompatible changes.
@@ -805,6 +806,30 @@ Note that you must [supply credentials](#authentication) and a project ID if run
805806 }
806807` ` `
807808
809+ Google Cloud Video Intelligence (Alpha)
810+ ----------------
811+
812+ - [Official Documentation][cloud-video-intelligence-docs]
813+
814+ # ## Preview
815+
816+ Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either default application
817+ credentials or a valid api key are available.
818+ Note that you must [supply credentials](# authentication) and a project ID if running this snippet elsewhere.
819+ ` ` ` java
820+ try (VideoIntelligenceServiceClient videoIntelligenceServiceClient =
821+ VideoIntelligenceServiceClient.create ()) {
822+ String inputUri = " " ;
823+ List< Feature> features = new ArrayList<> ();
824+ VideoContext videoContext = VideoContext.newBuilder().build ();
825+ String outputUri = " " ;
826+ String locationId = " " ;
827+ AnnotateVideoResponse response =
828+ videoIntelligenceServiceClient.annotateVideoAsync(
829+ inputUri, features, videoContext, outputUri, locationId).get ();
830+ }
831+ ` ` `
832+
808833Troubleshooting
809834---------------
810835
@@ -917,6 +942,8 @@ Apache 2.0 - See [LICENSE] for more information.
917942[vision-api]: http://googlecloudplatform.github.io/google-cloud-java/0.15.0/apidocs/?com/google/cloud/vision/spi/v1/package-summary.html
918943[cloud-vision-docs]: https://cloud.google.com/vision/docs
919944
945+ [cloud-video-intelligence-docs]: https://cloud.google.com/video-intelligence/docs
946+
920947[logging-api]: https://googlecloudplatform.github.io/google-cloud-java/apidocs/index.html?com/google/cloud/logging/package-summary.html
921948[stackdriver-logging-docs]: https://cloud.google.com/logging/docs
922949[stackdriver-logging-activation]: https://console.cloud.google.com/start/api?id=logging
0 commit comments