Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

CognitiveBuild/WatsonSpeechPlugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

39 Commits

Repository files navigation

Watson Speech SDK Plugin for iOS and Android

Language: Objective-C Language: Java Language: JavaScript GitHub license

Installation

To install the Watson Speech Plugin in your Cordova Project, run in terminal:

cordova plugin add https://github.com/CognitiveBuild/WatsonSpeechPlugin.git

Credentials

  • iOS: Update your username/password of the Speech-to-Text and Text-to-Speech services in Credential.plist
  • Android: Update in Java code of the native Plugins

Basic JavaScript APIs

Speech-to-Text

WatsonSDK.SpeechToText.recognize(function(data){
 // data
 if(data.iscompleted === WatsonSDK.Constants.YES) {
 // connection closed, ready for another round of speech recognition
 return;
 }
 if(data.isfinal === WatsonSDK.Constants.YES) {
 // last transcript is returned, the WebSocket is automatically disconnected
 }
 // evaluate the transcription
 console.log(data.message);
}, function(error){
 // error
});

Text-to-Speech

var text = 'Hello World!';
WatsonSDK.TextToSpeech.synthesize(function(data){
 // success
}, function(error){
 // error
}, [text]);

Text-to-Speech with Customizations

var text = 'Hello World!';
var customization_id = 'your-customization-id';
WatsonSDK.TextToSpeech.synthesize(function(data){
 // success
}, function(error){
 // error
}, [text, customization_id]);

Uninstall

To uninstall the Watson Speech Plugin from your Corodva Project, run in terminal:

cordova plugin remove WatsonSpeechPlugin

License

Copyright 2017 GCG GBS CTO Office under the Apache 2.0 license.

About

Watson Speech SDK Cordova Plugin for iOS and Android

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /