From defe1cd3db6b417443fa733c036cd00c1802dcc0 Mon Sep 17 00:00:00 2001 From: Alix Hamilton Date: Thu, 16 Aug 2018 13:53:51 -0700 Subject: [PATCH] Video Intelligence region tag update (#81) --- video-intelligence/analyze.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/video-intelligence/analyze.js b/video-intelligence/analyze.js index 27b39de385..9b7751ba01 100644 --- a/video-intelligence/analyze.js +++ b/video-intelligence/analyze.js @@ -81,7 +81,7 @@ function analyzeLabelsGCS(gcsUri) { } function analyzeLabelsLocal(path) { - // [START video_analyze_labels_local] + // [START video_analyze_labels] // Imports the Google Cloud Video Intelligence library + Node's fs library const video = require('@google-cloud/video-intelligence').v1; const fs = require('fs'); @@ -148,7 +148,7 @@ function analyzeLabelsLocal(path) { .catch(err => { console.error('ERROR:', err); }); - // [END video_analyze_labels_local] + // [END video_analyze_labels] } function analyzeShots(gcsUri) { @@ -291,7 +291,7 @@ function analyzeSafeSearch(gcsUri) { } function analyzeVideoTranscription(gcsUri) { - // [START video_speech_transcription] + // [START video_speech_transcription_gcs_beta] // Imports the Google Cloud Video Intelligence library const videoIntelligence = require('@google-cloud/video-intelligence') .v1p1beta1; @@ -341,7 +341,7 @@ function analyzeVideoTranscription(gcsUri) { .catch(err => { console.error('ERROR:', err); }); - // [END video_speech_transcription] + // [END video_speech_transcription_gcs_beta] } require(`yargs`)