0.2.1 • Published 8 years ago

node-samplerate v0.2.1

Weekly downloads
3
License
GPL
Repository
github
Last release
8 years ago

Samplerate

This packages provides a method to convert the samplerate of raw audio to a different samplerate.

It is based on the library libsamplerate.

Usage

First, install the package using npm:

npm install samplerate --save

Then use the package as follows:

var Samplerate = require("samplerate");

var originalSamplerate = 22050;
var channels = 1;
var targetSamplerate = 48000;

var data = [...]

var resampledData = Samplerate.resample(data, originalSamplerate, targetSamplerate, channels);

License

This project is published under the terms of version 3 of the GNU General Public License.

0.2.1

8 years ago

0.2.0

8 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.0

9 years ago