We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80aae33 commit 1d9bc05Copy full SHA for 1d9bc05
video-intelligence/analyze-face-detection.js
@@ -15,14 +15,14 @@
15
'use strict';
16
17
function main(path = 'YOUR_LOCAL_FILE') {
18
- // [START video_detect_faces_beta]
+ // [START video_detect_faces]
19
/**
20
* TODO(developer): Uncomment these variables before running the sample.
21
*/
22
// const path = 'Local file to analyze, e.g. ./my-file.mp4';
23
24
// Imports the Google Cloud Video Intelligence library + Node's fs library
25
- const Video = require('@google-cloud/video-intelligence').v1p3beta1;
+ const Video = require('@google-cloud/video-intelligence').v1;
26
const fs = require('fs');
27
28
// Creates a client
@@ -90,7 +90,7 @@ function main(path = 'YOUR_LOCAL_FILE') {
90
}
91
92
detectFaces();
93
- // [END video_detect_faces_beta]
+ // [END video_detect_faces]
94
95
96
main(...process.argv.slice(2));
0 commit comments