From 786a5d0089630b754ad68629ce799695b91e55df Mon Sep 17 00:00:00 2001 From: zevav Date: Wed, 20 Feb 2019 09:02:37 -0500 Subject: [PATCH] example --- README.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 111011b..411e00a 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,64 @@ formats. ### Example + $ tpro '{ + + "job": { + "lang": "en", + "user_id": 2152310, + "name": "recording.mp4", + "duration": 7, + "created_at": "Mon Nov 12 14:57:06 2018", + "id": 9871364 + }, + "speakers": [ + { + "duration": "6.87", + "confidence": null, + "name": "M2", + "time": "5.98" + } + ], + "words": [ + { + "duration": "0.13", + "confidence": "0.670", + "name": "Hello", + "time": "5.98" + }, + { + "duration": "0.45", + "confidence": "1.000", + "name": "there", + "time": "6.14" + } + ] + + }' speechmatics universal_transcript + + [ + { + "start": 5.98, + "end": 6.11, + "confidence": 0.67, + "word": "Hello", + "always_capitalized": false, + "punc_after": false, + "punc_before": false + }, + { + "start": 6.14, + "end": 6.59, + "confidence": 1.0, + "word": "there", + "always_capitalized": false, + "punc_after": false, + "punc_before": false + } + ] + + $ + # STT Services - [Speechmatics](https://www.speechmatics.com/) diff --git a/setup.py b/setup.py index 1bafc0c..f973946 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('README.md') as file: setup( name="tpro", - version="0.03", + version="0.04", url='https://github.com/zevaverbach/tpro', install_requires=[ 'Click',