npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-audio-okapi

v0.1.1

Published

Audio recorder tapir component for Vue.js 3. It enables to record, play and send audio messages to a server.

Downloads

109

Readme

vue-audio-okapi npm npm

Audio recorder component for Vue.js 3 for saving voice messages in mp3 file format. It makes it possible to record an audio message and send it to a server using the HTTP POST body.

Use Case

The most popular use case of vue-audio-okapi is to upload an audio contact message directly from a website to your server.

Architecture Overview

The developer includes the vue-audio-okapi component in his Vue 3 website. Users can leave a voice message and submits it. Vue-audio-okapi contacts the laravel backend api and uploads the audio data.

Installation

In a Vue 3 application install with:

npm i vue-audio-okapi --save

or

yarn add vue-audio-okapi --save

Example Usage in vue3

<template>
  <OkapiWidget :time="2" backendEndpoint="https://your-endpoint.com/.netlify/functions/audio-message" 
                 buttonColor="green"/>
</template>

<script>
import OkapiWidget from 'vue-audio-okapi';
import 'vue-audio-okapi/dist/vue-audio-okapi.css';

export default {
  name: 'App',
  components: {
    OkapiWidget,
  }
}
</script>

Properties

| Name | Type | Description | |------------------|----------|------------------------------------------------------------------------------------------------------------------| | time | Number | Maximum recording time in minutes | | bitRate | Number | Bit rate of recording | | sampleRate | Number | Sample rate of recording | | backendEndpoint | String | URL of the service that receives the data as POST | | buttonColor | String | Color code of the buttons for theming | | afterRecording | Function | Callback function when recording is finished. | | successfulUpload | Function | Callback function that is called when data is uploaded successfully. | | failedUpload | Function | Callback function that is called when upload failed. | | customUpload | Function | Custom upload function that expects the audio blob as parameter. Returns true when successful, false when error. | | visible | Boolean | If the widget is visible on the website. "false" stops the recording. | |

The data sent to the server is encoded in the MP3 format.

Compatibility

Successfully tested with applications that use Vue 3 and inertiajs.

Dependencies

Further Reading

References

The package bases on a fork of the vue-audio-tapir by: @tderflinger Your can read more about the Audio Okapi project on the blog: https://www.tderflinger.com/en/easily-receive-audio-messages-from-users

This project has been inspired by vue-audio-recorder by Gennady Grishkovtsov.

License

MIT License