项目作者: califken

项目描述 :
Generate peak audio data from an audio file URL in a Node.js environment - without the browser.
高级语言: JavaScript
项目地址: git://github.com/califken/node-audio-peaks.git
创建时间: 2021-08-10T09:31:47Z
项目社区:https://github.com/califken/node-audio-peaks

开源协议:GNU General Public License v3.0

下载


Node Audio Peaks

Generate peak audio data from a local filepath or remote file URL in a Node.js environment - without the browser.

Demo

Try this out on stackblitz - (run the command node index.js in the terminal)

Installation

Use your favorite package manager / npm to install.

  1. npm install node-audio-peaks --save

Usage

Version 3.0.1 Is an ES6 module, and uses RxJS to return the audio peak data as an observable.

getAudioPeaks(url, samples)

  1. import { getAudioPeaks } from "node-audio-peaks";
  2. // Generate peaks for a local audio file
  3. let filepath = 'sampleaudio.mp3';
  4. let audioPeaksFromFile$ = getAudioPeaks(filepath);
  5. audioPeaksFromFile$.subscribe(console.log);
  6. // Generate peaks for a remote audio file
  7. let audioFileURL = 'https://www.kennethcaple.com/api/mp3/richinlovemutedguitarechoing.mp3';
  8. let audioPeaksFromURL$ = getAudioPeaks(audioFileURL);
  9. audioPeaksFromURL$.subscribe(console.log);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

This work is licensed under a GNU General Public User License.

Author

Kenneth Caple