Skip to content
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
6 changes: 3 additions & 3 deletions video/cloud-client/analyze.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ def analyze_faces(path):
while not operation.done():
sys.stdout.write('.')
sys.stdout.flush()
time.sleep(1)
time.sleep(20)

print('\nFinished processing.')

Expand DownExpand Up@@ -70,7 +70,7 @@ def analyze_labels(path):
while not operation.done():
sys.stdout.write('.')
sys.stdout.flush()
time.sleep(1)
time.sleep(20)

print('\nFinished processing.')

Expand DownExpand Up@@ -99,7 +99,7 @@ def analyze_shots(path):
while not operation.done():
sys.stdout.write('.')
sys.stdout.flush()
time.sleep(1)
time.sleep(20)

print('\nFinished processing.')

Expand Down