From b6e4c13531aef62a875b9662e70e0d8ac13fbda7 Mon Sep 17 00:00:00 2001 From: Yu-Han Liu Date: Fri, 1 Dec 2017 14:54:22 -0800 Subject: [PATCH] remove empty input_uri --- video/cloud-client/analyze/analyze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/cloud-client/analyze/analyze.py b/video/cloud-client/analyze/analyze.py index 0c177c4502c..3cba9baefd7 100644 --- a/video/cloud-client/analyze/analyze.py +++ b/video/cloud-client/analyze/analyze.py @@ -187,7 +187,7 @@ def analyze_labels_file(path): input_content = movie.read() operation = video_client.annotate_video( - '', features=features, input_content=input_content) + features=features, input_content=input_content) print('\nProcessing video for label annotations:') result = operation.result(timeout=90)