diff --git a/video/cloud-client/quickstart/quickstart.py b/video/cloud-client/quickstart/quickstart.py index 087f7abd5db..1300e774707 100644 --- a/video/cloud-client/quickstart/quickstart.py +++ b/video/cloud-client/quickstart/quickstart.py @@ -33,7 +33,7 @@ def run_quickstart(): 'gs://demomaker/cat.mp4', features=features) print('\nProcessing video for label annotations:') - result = operation.result(timeout=90) + result = operation.result(timeout=120) print('\nFinished processing.') # first result is retrieved because a single video was processed diff --git a/video/cloud-client/shotchange/shotchange.py b/video/cloud-client/shotchange/shotchange.py index e9b91dfd316..2db0e832d49 100644 --- a/video/cloud-client/shotchange/shotchange.py +++ b/video/cloud-client/shotchange/shotchange.py @@ -44,7 +44,7 @@ def analyze_shots(path): print('\nProcessing video for shot change annotations:') # [START video_shot_tutorial_check_operation] - result = operation.result(timeout=90) + result = operation.result(timeout=120) print('\nFinished processing.') # [END video_shot_tutorial_check_operation]