Skip to content

Speech recognition plugin for Android. This plugin is heavily based on [SpeechRecognitionPlugin](https://github.com/macdonst/SpeechRecognitionPlugin).

License

Notifications You must be signed in to change notification settings

Gauri-P/speech-recognition-android

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

speech-recognition-android

Speech recognition plugin for Android. This plugin is heavily based on SpeechRecognitionPlugin. I have completely copied the Android speech recognition code from SpeechRecognitionPlugin, removed iOS part and added few changes like partial results and error details.

To install this plugin use

cordova plugin add https://github.com/Gauri-P/speech-recognition-android

Example Usage

var recognition = new speechRecognitionAndroid();
        recognition.onresult = function(event) 
        {
				   if (event.results.length > 0) 
				   {
                $scope.recognizedText = event.results[0][0].transcript;
                alert($scope.recognizedText);
           }
        };

About

Speech recognition plugin for Android. This plugin is heavily based on [SpeechRecognitionPlugin](https://github.com/macdonst/SpeechRecognitionPlugin).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published