Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@toots/libsamplerate.js

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@toots/libsamplerate.js

Javascript/wasm bindings to libsamplerate.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Libsamplerate.js

This repository provides a build of the samplerate conversion library in JavaScript/wasm.

Install

Using npm:

npm install @toots/libsamplerate.js

Using yarn:

yarn add @toots/libsamplerate.js

Using pnpm:

pnpm install @toots/libsamplerate.js

In a HTML page:

When using webpack, the package should point to the correct libsamplerate_browser.js file automatically.

When using directly as a script, you can load the libsamplerate_node.js file as:

<script src="libsamplerate_node.js"></script>

How to use?

The encoding API should be quite straight forward:

import { Samplerate, Converter } from "@toots/libsamplerate.js";

const exec = async () => {
  await Samplerate.initialized;
  
  const resampler = new Samplerate(Converter.FASTEST);

  const result = resampler.process({
    data: buffer, // buffer is a Float32Aray or a Int16Array
    ratio: 1.5,
    last: false
  });

  const converted = result.data; // same type as buffer above
  const used = result.used; // input samples effectively used

  // Close:
  resampler.close();
}

exec();

Author

Romain Beauxis toots@rastageeks.org

Code derived from libmp3lame-js by: Andreas Krennmair ak@synflood.at

License

libsamplerate.js is published under the license terms as samplerate.

Keywords

javascript

FAQs

Package last updated on 01 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts