🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

wave-visualizer

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wave-visualizer

Audio visualizer library for javascript

1.0.6
latest
Source
npm
Version published
Maintainers
1
Created
Source

Wave.js

Minimal wave visualizer for javascript from wave.js Visual audio from element or micro phone stream

Wave visulaizer

DOCUMENTATION

LIVE EXAMPLES

Installation

Install with NPM

npm i wave-visualizer

Setup

If your using npm use a default import to include wave.

import Wave from 'wave-visualizer';

Create a new wave object.

var wave = new Wave();

If your working with React, put the wave instance in state.

let [wave] = useState(new Wave());

Usage

Call one of the three main function on the wave object, fromFile, fromStream, fromElement.

wave.fromElement('audio_element_id', 'canvas_id');

Documentation

View the current documentation for Wave.js here.

Example

<html>
  <head></head>

  <body>
    <canvas id="output" height="500" width="500"></canvas>

    <script src="../dist/bundle.cjs.js"></script>
    <script>
      let wave = new Wave();

      navigator.mediaDevices
        .getUserMedia({
          audio: true,
        })
        .then(function (stream) {
          wave.fromStream(stream, 'output', {
            colors: ['red', 'white', 'blue'],
          });
        })
        .catch(function (err) {
          console.log(err.message);
        });
    </script>
  </body>
</html>

Contributor Workflow

  • Fork Wave.js repo.
  • Clone to your local computer.
  • Run "npm i" in the root folder to install dependencies.
  • Run "npm run test" to start the dev server and code watcher.
  • Open the src folder and make a change to one of the src files.
  • Save changes and refresh browser window to see changes.
  • Push to remote branch and create a pull request to the Wave.js master branch.

Keywords

audio

FAQs

Package last updated on 17 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts