arun
arun

Reputation: 4815

Chrome doesn't support web kit speech?

My browser is upto date with Version 44.0.2403.155 m.

but this link says Your browser does not support web kit speech so a standard input box will be shown. why is that? what did I miss?

Upvotes: 0

Views: 43

Answers (1)

woxxom
woxxom

Reputation: 73526

That link apparently uses some obsolete implementation.

Chrome platform status site lists a different example: http://simpl.info/stt/

Basic usage example by George Ornbo (more):

var recognition = new webkitSpeechRecognition();
recognition.onresult = function(event) { 
  console.log(event) 
}
recognition.start();

Upvotes: 2

Related Questions