Update README.md

Removed "work in progress" section as the Asterisk side code has been merged, updated wiki page link to API since it was moved, and added links to blog posts.
This commit is contained in:
kharwell 2022-05-31 10:45:07 -05:00 committed by GitHub
parent 2857c960b1
commit 85c69a4b53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,6 @@
# Work in progress
Note, the Asterisk side code for this is still [under review](https://gerrit.asterisk.org/c/asterisk/+/17330) and has not yet merged. If you'd like to test things out you'll need to download the patch from the [review](https://gerrit.asterisk.org/c/asterisk/+/17330), apply it to the Asterisk master branch, and then rebuild Asterisk and reinstall in order for things to work.
# Asterisk External Speech to Text application # Asterisk External Speech to Text application
This package contains an example Node.js program that uses the [Asterisk External Application Protocol](https://wiki.asterisk.org/wiki/display/AST/Asterisk+External+Application+Protocol) (AEAP) to facilitate external speech to text translation in Asterisk. This package contains an example Node.js program that uses the [Asterisk External Application Protocol](https://wiki.asterisk.org/wiki/pages/viewpage.action?pageId=47875006) (AEAP) to facilitate external speech to text translation in Asterisk 18.12.0+ and 19.4.0+.
## Description ## Description
@ -64,3 +61,9 @@ If things are configured correctly, and the sample program found here is listeni
4. Once the caller is done speaking their spoken text is printed on the Asterisk CLI. 4. Once the caller is done speaking their spoken text is printed on the Asterisk CLI.
5. The Client disconnects from remote application 5. The Client disconnects from remote application
6. The call is hung up. 6. The call is hung up.
## Other References
* [Text-to-Speech and Speech-to-Text in Asterisk](https://www.asterisk.org/text-to-speech-and-speech-to-text-in-asterisk/)
* [Asterisk External Application Protocol: An Intro](https://www.asterisk.org/asterisk-external-application-protocol-an-intro/)
* [Asterisk External Application Protocol: Speech to Text Engine](https://www.asterisk.org/asterisk-external-application-protocol-speech-to-text-engine/)
* [Asterisk External Application Protocol: The Framework](https://www.asterisk.org/asterisk-external-application-protocol-the-framework/)