From 94b8a2cdd8cafcba740e0b641aad289f6186d779 Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Fri, 16 Nov 2018 14:31:28 -0800 Subject: [PATCH] Video: edit region tag --- video/cloud-client/analyze/analyze.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/video/cloud-client/analyze/analyze.py b/video/cloud-client/analyze/analyze.py index ab16e453fe2..a863b0a86d9 100644 --- a/video/cloud-client/analyze/analyze.py +++ b/video/cloud-client/analyze/analyze.py @@ -230,7 +230,7 @@ def analyze_shots(path): def speech_transcription(path): - # [START video_speech_transcription] + # [START video_speech_transcription_gcs] """Transcribe speech from a video stored on GCS.""" from google.cloud import videointelligence @@ -275,7 +275,7 @@ def speech_transcription(path): start_time.seconds + start_time.nanos * 1e-9, end_time.seconds + end_time.nanos * 1e-9, word)) - # [END video_speech_transcription] + # [END video_speech_transcription_gcs] if __name__ == '__main__':