mozilla / speaktome-web

DEPRECATED - JavaScript modules for Mozilla's cloud speech recognition API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SpeakToMe API

Version License

JavaScript module for Mozilla's SpeakToMe API.

Installation

Browser

Install and use by directly including the browser files:

<head>
  <title>My Speech-enabled Web Page</title>
  <script src="stm_web.min.js"></script>
</head>

<body>
<script>
	var stm = SpeakToMe({
		listener: listener
	});

	function listener(msg) {
		console.log('listener', msg);
	}
	stm.listen();
</script>
</body>

About

DEPRECATED - JavaScript modules for Mozilla's cloud speech recognition API.

License:Mozilla Public License 2.0


Languages

Language:JavaScript 61.7%Language:HTML 38.3%