0.3.7 • Published 2 years ago

vue-speech-recog v0.3.7

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

vue-speech-recog

Interact with the new Web Speech Recognition Api.

Currently available only in Chrome and Firefox

alt tag

The plugin will obviously have more features, if you have any requests or ideas, drop me an issue :)

Install

npm install vue-speech-recog
import Vue from "vue";
import VueSpeech from "vue-speech-recog";

Vue.use(VueSpeech);

Usage

<template>
	<div>
		<vue-speech />
	</div>
</template>

<script>
	export default {};
</script>

<style lang="css"></style>

Change language

<vue-speech lang="it-IT" />

Listen Control

<vue-speech isListen="false" />

isListen props is Boolean. When you set true vue-speech will listen what you say.
If you want to turn off vue-speech you can set it false.

Return speech data

<template>
	<div>
		<vue-speech @onTranscriptionEnd="onEnd" />
	</div>
</template>

<script>
	export default {
		methods: {
			onEnd({ lastSentence, transcription }) {
				// `lastSentence` is the last sentence before the pause
				// `transcription` is the full array of sentences
			},
		},
	};
</script>

Issues and features requests

Please drop an issue, if you find something that doesn't work, or a feature request at https://github.com/ajatdarojat45/vue-speech-recognition/issues

Follow me on twitter @ajatdarojat45

0.3.6

2 years ago

0.3.5

2 years ago

0.3.7

2 years ago

0.3.2

2 years ago

0.3.1

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.3.0

3 years ago