Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions video/cloud-client/analyze/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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__':
Expand Down