File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
'use strict' ;
16
16
17
17
function main ( path = 'YOUR_LOCAL_FILE' ) {
18
- // [START video_detect_faces_beta ]
18
+ // [START video_detect_faces ]
19
19
/**
20
20
* TODO(developer): Uncomment these variables before running the sample.
21
21
*/
22
22
// const path = 'Local file to analyze, e.g. ./my-file.mp4';
23
23
24
24
// Imports the Google Cloud Video Intelligence library + Node's fs library
25
- const Video = require ( '@google-cloud/video-intelligence' ) . v1p3beta1 ;
25
+ const Video = require ( '@google-cloud/video-intelligence' ) . v1 ;
26
26
const fs = require ( 'fs' ) ;
27
27
28
28
// Creates a client
@@ -90,7 +90,7 @@ function main(path = 'YOUR_LOCAL_FILE') {
90
90
}
91
91
92
92
detectFaces ( ) ;
93
- // [END video_detect_faces_beta ]
93
+ // [END video_detect_faces ]
94
94
}
95
95
96
96
main ( ...process . argv . slice ( 2 ) ) ;
You can’t perform that action at this time.
0 commit comments