Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Annyang converting speech to text

I'm trying to use annyang to convert speech into text, but I've ran into some problems. It works, but there's a few things that doesn't yet. First, I would like to know how would I be able to pass whatever the user said, into the alert function. Next, I would like to know how to end the annyang function when the user finished speaking. And finally, I'd like to know how to keep the allow and disallow microphone prompt from appearing again and again once it appeared once.

<script>
if (annyang) {

  var commands = {
    'Hello': function() {
      alert("Success");
    }
  };

  annyang.addCommands(commands);

}
</script>

<input type = 'submit' value = 'listen' onclick = "annyang.start();">
like image 216
frosty Avatar asked Aug 19 '15 07:08

frosty


3 Answers

Intead of use annyang for convert to text , you could test yourself with the original google speechrecognition demo

Original Demo

See the source code of above and you will easily do what you want with SpeechRecognition

I recommend this, because annyang is more a Voice Control Plugin. By the other side you can use Artyom.js in case that you want to use a library for this.

Artyom offers an easy "dictation" object to convert speech to text quickly:

var settings = {
    continuous:true, // Don't stop never because i have https connection
    onResult:function(text){
        console.log(text);
    },
    onStart:function(){
        console.log("Dictation started by the user");
    },
    onEnd:function(){
        alert("Dictation stopped by the user");
    }
};

var UserDictation = artyom.newDictation(settings);

// Start listening
UserDictation.start();

// To stop
//UserDictation.stop();

The language needs to be providen in the initialize method.

like image 127
Carlos Delgado Avatar answered Sep 27 '22 21:09

Carlos Delgado


var anything = function(anything) {
    alert(anything);
};
var commands = {
    '*anything': anything
};

this works, also it would not allert defined commands

like image 44
svetagoldstein Avatar answered Sep 27 '22 23:09

svetagoldstein


I would like to know how would I be able to pass whatever the user said, into the alert function.

You can do something like

<script>
if (annyang) {

  var commands = {
    'Hello :variable': function(variable) {
      alert(variable);
    }
  };

  annyang.addCommands(commands);

}
</script>

variable is the string, that the webspeech-api has recognized.

Next, I would like to know how to end the annyang function when the user finished speaking.

Set continuousto false. Annyang will automatically stop the recognition, when the user has finished talking.

annyang.start({ autoRestart: false, continuous: false });

You can also add a callback function, that annyang will call, when the speech recognition has finished:

annyang.addCallback('end', function () { // your code here});

And finally, I'd like to know how to keep the allow and disallow microphone prompt from appearing again and again once it appeared once.

The only way to prevent this, is to deliver the site via https not http There is no other way to achieve it. Also it will improve the speed of the recognition.

like image 31
Michael B Avatar answered Sep 27 '22 22:09

Michael B