soundfont2-esm
v0.6.0
Published
A SoundFont2 parser for Node.js and web browsers
Maintainers
Readme
soundfont2-esm
Fork of soundfont2 by Maarten Zuidhoorn, modernized with ESM output.
A SoundFont2 parser written in TypeScript. Works in Node.js and modern web browsers.
Installation
npm install soundfont2-esmUsage
import { SoundFont2 } from "soundfont2-esm";
const buffer = new Uint8Array(/* ... */);
const soundFont = new SoundFont2(buffer);
console.log(soundFont.metaData);
console.log(soundFont.presets);
console.log(soundFont.instruments);
console.log(soundFont.samples);License
MIT - see LICENSE
