We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e1f616 commit 9888768Copy full SHA for 9888768
video/quickstart.js
@@ -20,7 +20,9 @@
20
const Video = require('@google-cloud/videointelligence').v1beta1();
21
22
// Instantiates a client
23
-const video = Video.videoIntelligenceServiceClient();
+const video = Video.videoIntelligenceServiceClient({
24
+ projectId: process.env.GCLOUD_PROJECT // Replace with your Google Cloud project ID
25
+});
26
27
// The GCS filepath of the video to analyze
28
const gcsUri = 'gs://nodejs-docs-samples/videointelligence_quickstart.mp4';
0 commit comments