We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blob file is video/webm instead of audio/mp3, is there possibility to record in mp3?
<vue-record-audio v-if="!message.message" @result="onResult" />
onResult(data) { // //console.log('The blob data:', data); // //console.log('Downloadable audio', window.URL.createObjectURL(data)); data = data.slice(0, data.size, "audio/mp3") this.audio = window.URL.createObjectURL(data); console.log('The blob data:', data); this.fileaudio = data; },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Blob file is video/webm instead of audio/mp3, is there possibility to record in mp3?
<vue-record-audio v-if="!message.message" @result="onResult" />
The text was updated successfully, but these errors were encountered: