
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
pitch-shift-node
Advanced tools
Pitch shift node for WebAudioApi. Using the pitch-shift library to do the shifting.
Living exmaple can be find here
npm install pitch-shift-node
#API
var PitchShiftNode = require('pitch-shift-node')
##PitchShiftNode(audioContext,pitchShift,options) create and return an AudioNode instance
audioContext WebAudioApi audio contextpitchShift number to scale the samples byoptions An object full of options to pass to the pitch shifter
frameSize size of frame to process (default 512)hopSize the distance between frames in samples. Must divide frame size. (default frameSize/4)dataSize maximal allowable size of a data frame (default frameSize)sampleRate Conversion factor from samples to seconds. (default 44100)analysiWindow analysis window. must be a typed array with length equl to frame size (defaults to Hann window)synthesisWindow synthesis window. must be a typed array with length equal to frame size (defaults to Hann window)threshold peak detection threshold. Set to 1.0 to always take maximum, otherwise set lower to detect half tones. (default 0.9)minPeriod Minimal resolvable period. (default sampleRate/400)Here is a simple example of using the pitch node.
var PitchShiftNode = require('pitch-shift-node');
var source = context.createBufferSource();
source.buffer = myBuffer;
//Create pitch shift node that scale samples by 1.25
var pitchNode = new PitchShiftNode(context,1.25);
source.connect(pitchNode);
pitchNode.connect(context.destination);
#Test And Play
# First install all the NPM tools:
npm install
Then run npm scripts:
#Building the example page
npm run build
#Host build example on port 3000
npm run example
#Credits (c) 2016 Chen Machluf. MIT License
Gettysburg adress reading by Britton Rea. Recording obtained from the Internet archive. http://archive.org/details/GettysburgAddress
FAQs
Pitch shift node for WebAudioApi
We found that pitch-shift-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.