How can I combine Bluemix talk and speech to text and text to speech

I would like to use the Bluemix example application and add speech input and output to it. There are other sample applications for Bluemix TTS and STT. What are the options for integrating these 3 functions and which ones are recommended for beginners?

+6
source share
3 answers

There are currently no plans to create a β€œsimple” example application that demonstrates the integration of Watson STT (speech to text), conversation, and TTS (text to speech). A longer term it is definitely on the radar.

In the short term, to get an idea of ​​how to do this, please take a look at the application code for the official machine:

The car dashboard application uses the IBM Watson Speech JS SDK: https://github.com/watson-developer-cloud/speech-javascript-sdk

Hope this helps.

+5
source

I did something along these lines with the Dialog Service demo application and Speech JS SDK a few months ago:

http://speech-dialog.mybluemix.net/

The full code is on github , but almost all the changes were in this commit .

Please note that it was built on an older beta version of the SDK. You can get the latest version of github release or npm (for use with webpack / browsify / etc.), And there are many examples .

+4
source

This is an old question, but IBM Watson is still evolving, so this might be a more relevant answer.

You have 2 options.

You can simply send your application an HTTP REST request (GET or POST), following this tutorial

Or you can use the language SDK.

If you are using nodejs, check out this example .

For java see this example .

Edit

Here is an example git project that I created to integrate text into speech into a simple sample application: conversation-simple-with-text-to-speech

Here's the specific commit that the integration was added to: commit 3564aeb

+4
source

All Articles