From b800bacada2d4767f3aa262a5cb2a6018828b467 Mon Sep 17 00:00:00 2001 From: Waldek Maleska Date: Wed, 15 Apr 2020 12:07:57 +0100 Subject: [PATCH 1/2] Update README.md * reflect the current project name in README * point to V2 SaaS API client * minor formatting changes --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6aba32c..41c7f15 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,19 @@ -# speechmatics_python -Example script (supported) to help you integrate with our API +# Legacy V1 Python Example + +Example script (supported) to help you integrate with our legacy V1 API. This code was developed and tested with Python 2.7.12 and Python 3.5.2 This is an example script for uploading audio files and saving the transcript in a .json file +> NOTE: For information on how to use the current V2 Speechmatics API, +> see [speechmatics-python](https://github.com/speechmatics/speechmatics-python) repository. + + ## Requirements + You will need to have the requests module installed in your Python environment. + ``` pip install requests ``` @@ -16,4 +23,4 @@ pip install requests python ./speechmatics.py -a example.mp3 -l en-US -i $user_id -k $auth_token -o example.json ``` -In this example the script uploads 'example.mp3', transcribes it using our en-US speech to text product and saves the resulting transcription as 'example.json' when the job has completed. +In this example the script uploads `example.mp3`, transcribes it using our en-US speech to text product and saves the resulting transcription as `example.json` file when the job has completed. From efc925caa274de3c340dfddd3061f7d4d899ac35 Mon Sep 17 00:00:00 2001 From: Waldek Maleska Date: Wed, 15 Apr 2020 12:20:10 +0100 Subject: [PATCH 2/2] rephrase reference to V2 RT library --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41c7f15..b1a57c2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This code was developed and tested with Python 2.7.12 and Python 3.5.2 This is an example script for uploading audio files and saving the transcript in a .json file -> NOTE: For information on how to use the current V2 Speechmatics API, +> NOTE: For information on how to use the current Speechmatics Realtime ASR API v2, > see [speechmatics-python](https://github.com/speechmatics/speechmatics-python) repository.