Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rse/audio-node-suite
Web Audio API AudioNode Suite
https://github.com/rse/audio-node-suite
api audio audionode suite web
Last synced: 15 days ago
JSON representation
Web Audio API AudioNode Suite
- Host: GitHub
- URL: https://github.com/rse/audio-node-suite
- Owner: rse
- Created: 2020-10-07T07:08:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-03T13:04:26.000Z (4 months ago)
- Last Synced: 2025-01-17T20:49:25.723Z (20 days ago)
- Topics: api, audio, audionode, suite, web
- Language: TypeScript
- Homepage: http://npmjs.com/audio-node-suite
- Size: 207 KB
- Stars: 14
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Audio-Node-Suite
================Web Audio API `AudioNode` Suite
![]()
![]()
About
-----**Audio-Node-Suite** is a JavaScript library, for use in the Browser
with the [Web Audio API](https://www.w3.org/TR/webaudio/),
which provides a suite of Web Audio API compatible
[`AudioNode`](https://developer.mozilla.org/en-US/docs/Web/API/AudioNode)
classes:- `AudioNodeComposite`: this is a convenient class for creating
a custom composite/wrapping `AudioNode` class. It is used internally
and can be also used for creating your own custom composite/wrapping
`AudioNode`. As an additional goodie, the class provides a useful
"by-pass" functionality for temporarily by-passing the effect of the
underlying `AudioNode` instances.- `AudioNodeNoise`: this is a white or pink noise generator which
can be used for testing purposes.- `AudioNodeMute`: this is a simple node for muting the audio stream.
- `AudioNodeGain`, `AudioNodeCompressor`, `AudioNodeLimiter`: these
are just convenient wrappers for the regular functionality provided
by the Web Audio API `GainNode` and `DynamicsCompressorNode` classes,
providing the `bypass()` functionality and some opinionated parameter defaults.- `AudioNodeEqualizer`: this is based on the Web Audio API `BiquadFilterNode`
class and provides a convenient parametric multi-band equalizer `AudioNode`.- `AudioNodeMeter`: this is based on the Web Audio API `AnalyzerNode`
class and continuously tracks and measures the overall volume
in decibel of the audio stream. It is also the internal base
building block for the `AudioNodeGate`, `AudioNodeAmplitude` and
`AudioNodeSpectrum` classes.- `AudioNodeGate`: this is based on the Web Audio API `GainNode`
class and measures the volume in decibel of the audio stream and
drains the volume if it drops below a certain decibel threshold. It is
intended to act as a Noise Gate.- `AudioNodeAmplitude`: this is based on `AudioNodeMeter` and
hence the Web Audio API `AnalyzerNode` class to analyze the
volume level of the audio stream and continuously render
it into a `Canvas` element in the DOM.- `AudioNodeSpectrum`: this is based on `AudioNodeMeter` and
hence the Web Audio API `AnalyzerNode` class to analyze the
frequency/decibel spectrum of the audio stream and continuously render
it in a (linear or logarithmic) scale to a `Canvas` element in the
DOM.- `AudioNodeVoice`: this is based on `AudioNodeMute`, `AudioNodeEqualizer`,
`AudioNodeGate`, `AudioNodeCompressor`, `AudioNodeGain` and
`AudioNodeLimiter` to provide a convenient single `AudioNode`
which acts as a reasonable filter chain for voice. Its opinionated
parameters are intentionally hard-coded and are just based on
experiences of the author.Installation
------------```shell
$ npm install audio-node-suite
```Usage
-----See the [TypeScript definition](src/audio-node-suite.d.ts)
for details on the provided Application Programming Interface (API).Implementation Notice
---------------------**Audio-Node-Suite** is written in TypeScript 4 (ECMAScript 2022) and
is transpiled to plain JavaScript (ECMAScript 2022) and this way runs
in all current (as of 2023/Q1) JavaScript environments, of course. To
support different loader environment, the transpiled output is provided
in the three distinct variants ESM (ECMAScript 2022), CommonJS (Node)
and UMD (Legacy Browser).License
-------Copyright © 2020-2024 Dr. Ralf S. Engelschall <http://engelschall.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.