Coder Social home page Coder Social logo

sampsontan / react-audio-visualize Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mtrsampson/react-audio-visualize

0.0 0.0 0.0 710 KB

An audio visualizer for React. Provides separate components to visualize both live audio and audio blobs.

Home Page: https://www.npmjs.com/package/react-audio-visualize

License: MIT License

TypeScript 97.45% HTML 2.55%

react-audio-visualize's Introduction

react-audio-visualize

An audio visualizer for React. Provides separate components to visualize both live audio and audio blobs.

Installation

npm install react-audio-visualize

AudioVisualizer Component (Example)

screenshot

import React, { useState } from 'react';
import { AudioVisualizer } from 'react-audio-visualize';

const Visualizer = () => {
  const [blob, setBlob] = useState<Blob>();
  const visualizerRef = useRef<HTMLCanvasElement>(null)

  // set blob somewhere in code

  return (
    <div>
      {blob && (
        <AudioVisualizer
          ref={visualizerRef}
          blob={blob}
          width={500}
          height={75}
          barWidth={1}
          gap={0}
          barColor={'#f76565'}
        />
      )}
    </div>
  )
}
Props Description Default Optional
blob Audio blob to visualize N/A No
width Width of the visualizer N/A No
height Height of the visualizer N/A No
barWidth Width of each individual bar in the visualization 2 Yes
gap Gap between each bar in the visualization 1 Yes
backgroundColor BackgroundColor for the visualization transparent Yes
barColor Color for the bars that have not yet been played "rgb(184, 184, 184)"" Yes
barPlayedColor Color for the bars that have been played "rgb(160, 198, 255)"" Yes
currentTime Current time stamp till which the audio blob has been played. Visualized bars that fall before the current time will have barPlayerColor, while that ones that fall after will have barColor N/A Yes
style Custom styles that can be passed to the visualization canvas N/A Yes
ref A ForwardedRef for the HTMLCanvasElement N/A Yes

LiveAudioVisualizer Component (Example)

livevisualizergif

import React, { useState } from 'react';
import { LiveAudioVisualizer } from 'react-audio-visualize';

const Visualizer = () => {
  const [mediaRecorder, setMediaRecorder] = useState<MediaRecorder>();

  // set media recorder somewhere in code

  return (
    <div>
      {mediaRecorder && (
        <LiveAudioVisualizer
          mediaRecorder={mediaRecorder}
          width={200}
          height={75}
        />
      )}
    </div>
  )
}
Props Description Default Optional
mediaRecorder Media recorder who's stream needs to visualized N/A No
width Width of the visualizer 100% Yes
height Height of the visualizer 100% Yes
barWidth Width of each individual bar in the visualization 2 Yes
gap Gap between each bar in the visualization 1 Yes
backgroundColor BackgroundColor for the visualization transparent Yes
barColor Color for the bars that have not yet been played "rgb(160, 198, 255)" Yes
fftSize An unsigned integer, representing the window size of the FFT, given in number of samples. For more details 1024 Yes
maxDecibels A double, representing the maximum decibel value for scaling the FFT analysis data. For more details -10 Yes
minDecibels A double, representing the minimum decibel value for scaling the FFT analysis data, where 0 dB is the loudest possible sound. For more details -90 Yes
smoothingTimeConstant A double within the range 0 to 1 (0 meaning no time averaging). For more details 0.4 Yes

react-audio-visualize's People

Contributors

samhirtarif avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.