Skip to content

Video: edit region tag #1851

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 19, 2018
Merged
Changes from all 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