java怎么语音转换成文字_Annyang将语音转换为文本

使用annyang转换为文本的Intead,您可以使用原始的google speechrecognition演示测试自己

查看上面的源代码,您可以使用SpeechRecognition轻松完成所需的操作

我推荐这个,因为annyang更像是一个语音控制插件 . 另一方面,如果您想使用库,可以使用Artyom.js .

Artyom提供了一个简单的“听写”对象,可以快速将语音转换为文本:

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();

该语言需要在initialize方法中提供 .

你可能感兴趣的:(java怎么语音转换成文字)