1.0.6 • Published 2 years ago
master-pitch v1.0.6
MasterPitch
Edit audio pitch and create instruments inside your webpage!
Enter Package NPM page
Install
yarn add master-pitch
or npm i master-pitch
Import
import { loadBuffer, playBuffer } from 'master-pitch';
Use
// loading
const myAudio = await loadBuffer('../audios/sample.mp3');
// playing with pitch exemples
const default = 60;
const higher = 62;
playBuffer(myAudio, default, higher);