🎙️ Vue.js dictaphone component to record audio from the user
stop
event returns an $event
object containing
$event.blob
) for further processing $event.src
) for immediate output to the usererror
event, when the browser does not support audio recording or the user has blocked microphone access.npm install --save vue-dictaphone
yarn add vue-dictaphone
import VueDictaphone from "vue-dictaphone";
Vue.use(VueDictaphone);
<vue-dictaphone @stop="handleRecording($event)"
v-slot="{ isRecording, startRecording, stopRecording, deleteRecording }">
<button v-if="!isRecording" @click="startRecording">Start recording</button>
<button v-else @click="stopRecording">Stop recording</button>
</vue-dictaphone>
<vue-dictaphone-spectrum-analyser/>
<template v-if="audioSource">
<audio :src="https://github.com/Lorti/vue-dictaphone/raw/master/audioSource" controls></audio>
</template>
new Vue({
// ...
data: {
audioSource: null
},
methods: {
handleRecording({ blob, src }) {
this.audioSource = src;
}
}
// ...
});
You can pass an optional mime-type
prop on the vue-dictaphone
element to change the MIME type of the recorded audio.
<vue-dictaphone @stop="handleRecording($event)" mime-type="audio/mp3">
<!-- ... -->
</vue-dictaphone>
For a list of MIME types supported by major browsers take a look a Media formats for HTML audio and video on MDN.
Manuel Wieser
https://manu.ninja/
https://twitter.com/manuelwieser
https://www.paypal.me/manuninja