Merge pull request #3265 from lissyx/py-metadata-fix

Update client.py
This commit is contained in:
lissyx 2020-08-20 10:08:35 +02:00 committed by GitHub
commit 5803eebe61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ def words_from_candidate_transcript(metadata):
each_word = dict() each_word = dict()
each_word["word"] = word each_word["word"] = word
each_word["start_time "] = round(word_start_time, 4) each_word["start_time"] = round(word_start_time, 4)
each_word["duration"] = round(word_duration, 4) each_word["duration"] = round(word_duration, 4)
word_list.append(each_word) word_list.append(each_word)