0.0.5 • Published 3 years ago

stream-audio-level v0.0.5

Weekly downloads
12
License
MIT
Repository
github
Last release
3 years ago

stream-audio-level

a module to get MediaStream audio level.

Installation

yarn add stream-audio-level

Usage

Mininum

import { watchStreamAudioLevel } from 'stream-audio-level'

const close = watchStreamAudioLevel(stream, (v) => console.log(v))
close()

With option

import { watchStreamAudioLevel } from 'stream-audio-level'

const close = watchStreamAudioLevel(stream, (v) => console.log(v), {
    minHz: 100, 
    maxHz: 1000,
    calcMethod: 'max', // default 'average'
    valueType: 'float' // default 'byte'
})
close()