From aa7b4687276ee0a345f7761952194b0cc4f365d6 Mon Sep 17 00:00:00 2001 From: remi Taylor Date: Fri, 4 Aug 2017 10:39:30 -0700 Subject: [PATCH] Remove old parameter enable_word_time_offsets [(#1054)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/1054) --- speech/snippets/transcribe_async.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/speech/snippets/transcribe_async.py b/speech/snippets/transcribe_async.py index e8fd61159eff..9ac77918cf5a 100644 --- a/speech/snippets/transcribe_async.py +++ b/speech/snippets/transcribe_async.py @@ -71,8 +71,7 @@ def transcribe_gcs(gcs_uri): config = types.RecognitionConfig( encoding=enums.RecognitionConfig.AudioEncoding.FLAC, sample_rate_hertz=16000, - language_code='en-US', - enable_word_time_offsets=True) + language_code='en-US') operation = client.long_running_recognize(config, audio)